/* ==========================================================================
   css/attractions/gate.css - [어트랙션 1] 정문 매표소 스타일
   ========================================================================== */

.gate-wrapper {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.gate-lock-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: inline-block;
}

.gate-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gate-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* 티켓 자판기 콘솔 */
.ticket-vending-machine {
  background: #111827;
  border: 2px solid #374151;
  border-radius: 20px;
  padding: 25px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.7);
}

.screen-display {
  background: #022C22;
  border: 2px solid #065F46;
  border-radius: 12px;
  padding: 16px;
  color: #34D399;
  font-family: monospace;
  font-size: 1.05rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #34D399;
}

.ticket-input-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.ticket-input {
  background: #1F2937;
  border: 2px solid #4B5563;
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  padding: 12px 16px;
  width: 220px;
  letter-spacing: 4px;
  outline: none;
  transition: border-color 0.2s;
}

.ticket-input:focus {
  border-color: var(--primary);
}

.ticket-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 143, 171, 0.4);
}

.hint-chip {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.8rem;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
}

/* VIP 티켓 발권 카드 */
.vip-ticket-card {
  display: none;
  background: linear-gradient(135deg, #1e1b4b, #311042);
  border: 2px dashed var(--ticket-gold);
  border-radius: 18px;
  padding: 24px;
  margin-top: 25px;
  position: relative;
  animation: popTicket 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

@keyframes popTicket {
  from { opacity: 0; transform: scale(0.6) rotate(-3deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.ticket-header {
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: #FBBF24;
  font-weight: 900;
  border-bottom: 1px dashed rgba(245, 158, 11, 0.4);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.ticket-body-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: white;
  margin-bottom: 6px;
}

.ticket-body-sub {
  color: #E2E8F0;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.enter-park-btn {
  background: var(--ticket-gold);
  color: #1E1B4B;
  font-weight: 900;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
  transition: transform 0.2s;
}

.enter-park-btn:hover {
  transform: scale(1.05);
}
