/* ===========================
   THE SCOUT in BUSAN — Styles
   =========================== */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-card: #1a1a1a;
  --gray-dark: #222222;
  --gray: #333333;
  --gray-light: #888888;
  --white: #f0f0f0;
  --white-soft: #cccccc;
  --accent: #00FC0B;
  --accent-dim: #00aa08;
  --accent-glow: rgba(0, 252, 11, 0.3);
  --warning: #FFD600;
  --danger: #FF3333;
  --font-main: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Orbitron', 'Courier New', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hidden {
  display: none !important;
}

.accent { color: var(--accent); }
.warning { color: var(--warning); }
.danger { color: var(--danger); }


/* ===========================
   HOOK PAGE
   =========================== */

.hook-page {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  z-index: 1000;
  overflow: hidden;
}

.hook-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hook-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.video-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,252,11,0.05) 0%, transparent 70%);
}

/* Scanlines */
.scanlines,
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Noise overlay */
.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.hook-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  width: 100%;
  max-width: 600px;
}

.hook-logo {
  font-family: var(--font-mono);
  font-size: clamp(40px, 10vw, 80px);
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--white);
  text-shadow: 0 0 20px var(--accent-glow);
}

.hook-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: 12px;
  color: var(--accent);
  margin-top: -12px;
}

.hook-transmission {
  margin-top: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.typewriter {
  font-family: var(--font-main);
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white-soft);
  letter-spacing: 1px;
  line-height: 1.6;
}

.blink-cursor {
  display: inline-block;
  width: 2px;
  height: 20px;
  background: var(--accent);
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hook-enter-btn {
  position: relative;
  margin-top: 32px;
  padding: 16px 48px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s 2s forwards;
}

.hook-enter-btn:hover {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(0,252,11,0.15);
}

.btn-scanline {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,252,11,0.1), transparent);
  animation: scanBtn 3s infinite;
}

@keyframes scanBtn {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hook-warning {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gray-light);
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.glitch::before {
  color: #ff0033;
  z-index: -1;
  animation: glitch1 3s infinite;
}

.glitch::after {
  color: #00ffff;
  z-index: -2;
  animation: glitch2 3s infinite;
}

@keyframes glitch1 {
  0%, 90%, 100% { clip-path: inset(0); transform: translate(0); }
  92% { clip-path: inset(20% 0 60% 0); transform: translate(-4px, 2px); }
  94% { clip-path: inset(50% 0 20% 0); transform: translate(4px, -2px); }
  96% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, 1px); }
  98% { clip-path: inset(10% 0 70% 0); transform: translate(2px, -1px); }
}

@keyframes glitch2 {
  0%, 90%, 100% { clip-path: inset(0); transform: translate(0); }
  91% { clip-path: inset(60% 0 10% 0); transform: translate(4px, -2px); }
  93% { clip-path: inset(10% 0 80% 0); transform: translate(-4px, 2px); }
  95% { clip-path: inset(40% 0 30% 0); transform: translate(2px, -1px); }
  97% { clip-path: inset(70% 0 15% 0); transform: translate(-2px, 1px); }
}

/* Hook page fade out */
.hook-page.fade-out {
  animation: hookFadeOut 0.8s ease forwards;
}

@keyframes hookFadeOut {
  0% { opacity: 1; }
  50% { opacity: 0; filter: brightness(3); }
  100% { opacity: 0; display: none; }
}


/* ===========================
   TOP BAR
   =========================== */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray);
}

.top-bar-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.top-bar-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: var(--black);
  border: none;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.top-bar-cta:hover {
  background: #33ff33;
  box-shadow: 0 0 20px var(--accent-glow);
}

.top-bar-back {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--white-soft);
  font-family: var(--font-main);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}

.top-bar-back:hover {
  color: var(--accent);
}


/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 49px;
}

.hero-scanlines {
  z-index: 2;
}

.hero-key-visual {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}

/* Continuous TV static / noise overlay */
.hero-key-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.25;
  animation: tvStatic 0.06s steps(8) infinite;
  mix-blend-mode: overlay;
}

/* Periodic glitch line / RGB split */
.hero-key-visual::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(0,252,11,0.6) 15%, rgba(255,0,50,0.4) 45%, rgba(0,255,255,0.5) 75%, transparent 100%);
  opacity: 0;
  animation: glitchLine 3s infinite;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  animation: heroColorShift 4s infinite;
}

/* Continuous color shift — stronger & more frequent */
@keyframes heroColorShift {
  0%, 100% { filter: none; }
  8% { filter: none; }
  8.4% { filter: hue-rotate(25deg) saturate(1.3) brightness(1.05); }
  8.8% { filter: none; }
  25% { filter: none; }
  25.3% { filter: brightness(1.1) contrast(1.1); }
  25.6% { filter: hue-rotate(-15deg) saturate(1.2); }
  26% { filter: none; }
  50% { filter: none; }
  50.4% { filter: hue-rotate(20deg) saturate(1.25); }
  50.8% { filter: none; }
  75% { filter: none; }
  75.3% { filter: hue-rotate(-20deg) brightness(1.08) saturate(1.3); }
  75.7% { filter: none; }
}

/* TV static noise animation — faster jitter */
@keyframes tvStatic {
  0% { background-position: 0 0; }
  20% { background-position: -80px -40px; }
  40% { background-position: 60px -90px; }
  60% { background-position: -50px 70px; }
  80% { background-position: 40px -30px; }
  100% { background-position: -70px 50px; }
}

/* Glitch scan line — more frequent sweeps */
@keyframes glitchLine {
  0%, 70%, 100% { opacity: 0; top: 0; }
  72% { opacity: 0.9; top: 10%; }
  74% { opacity: 0.7; top: 30%; }
  76% { opacity: 0; top: 45%; }
  80% { opacity: 0.8; top: 55%; }
  82% { opacity: 0.6; top: 70%; }
  84% { opacity: 0.9; top: 85%; }
  86% { opacity: 0; top: 95%; }
}

.hero-overlay {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px 20px 40px;
  background: linear-gradient(180deg, transparent 0%, var(--black) 20%);
  margin-top: -60px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease;
}

.hero-tagline {
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white-soft);
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 8px;
}

.hero-date {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-light);
  letter-spacing: 2px;
}


/* ===========================
   BENEFITS GRID (4-Split)
   =========================== */

.benefits-grid {
  padding: 60px 20px;
  max-width: 768px;
  margin: 0 auto;
}

.benefits-heading {
  text-align: center;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.benefits-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-2px);
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}

.benefit-text span {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.benefit-icon {
  width: 64px;
  height: 64px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}


/* ===========================
   INDEX NAVIGATION
   =========================== */

.index-nav {
  position: sticky;
  top: 49px;
  z-index: 90;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.index-nav::-webkit-scrollbar {
  display: none;
}

.index-nav-inner {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
  gap: 0;
}

.index-link {
  flex-shrink: 0;
  padding: 14px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--gray-light);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.index-link:hover {
  color: var(--white-soft);
}

.index-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* ===========================
   CONTENT SECTIONS (Accordion)
   =========================== */

.content-section {
  max-width: 768px;
  margin: 0 auto;
  border-bottom: 1px solid var(--gray);
}

.section-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}

.section-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.section-number {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
}

.section-title {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-toggle {
  color: var(--gray-light);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.section-header[aria-expanded="true"] .section-toggle {
  transform: rotate(180deg);
}

.section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.section-body.open {
  max-height: 3000px;
}


/* ===========================
   SECTION 1: WORLDVIEW
   =========================== */

.worldview-container {
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.terminal-window {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: 8px;
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gray-dark);
  border-bottom: 1px solid var(--gray);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 1px;
}

.terminal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terminal-line {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.6;
}

.terminal-prompt {
  color: var(--accent);
  margin-right: 8px;
}

.worldview-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.worldview-intro {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.6;
}

.worldview-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-soft);
}

.worldview-divider {
  width: 40px;
  height: 1px;
  background: var(--gray-light);
  margin: 8px 0;
}

.worldview-highlight {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  padding-top: 12px;
  border-top: 1px solid var(--gray);
}


/* ===========================
   SECTION 2: HOW TO PLAY
   =========================== */

.steps-container {
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-card {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.step-card p {
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.6;
}

.step-arrow {
  width: 24px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  flex-shrink: 0;
}

.step-arrow svg {
  width: 100%;
  height: 100%;
}


/* ===========================
   SECTION 3: PRICING
   =========================== */

.pricing-container {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.pricing-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 12px;
}

.pricing-price {
  margin: 16px 0;
}

.pricing-currency {
  font-size: 18px;
  color: var(--white);
  vertical-align: top;
}

.pricing-amount {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
}

.pricing-unit {
  font-size: 14px;
  color: var(--gray-light);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  text-align: left;
  padding: 0 12px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--white-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--gray-light);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.pricing-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-btn.featured-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.pricing-btn.featured-btn:hover {
  background: #33ff33;
  box-shadow: 0 0 20px var(--accent-glow);
}

.pricing-note {
  padding: 0 20px 32px;
}

.pricing-note p {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.8;
}


/* ===========================
   SECTION 4: REVIEWS
   =========================== */

.reviews-container {
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 24px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  color: var(--warning);
  font-size: 16px;
  letter-spacing: 2px;
}

.star-empty {
  opacity: 0.3;
}

.review-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(0, 252, 11, 0.1);
  color: var(--accent);
  border-radius: 4px;
  font-weight: 500;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-soft);
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-light);
}


/* ===========================
   SECTION 5: FAQ
   =========================== */

.faq-container,
.notice-container {
  padding: 0 20px 32px;
}

.faq-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray);
}

.faq-item {
  border-bottom: 1px solid var(--gray);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question.active svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 16px 0;
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.7;
}

.notice-container {
  margin-top: 16px;
}

.notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.notice-list li {
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.notice-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gray-light);
}

.notice-list.refund li {
  padding-left: 0;
}

.notice-list.refund li::before {
  display: none;
}

.notice-list.refund li strong {
  color: var(--white);
  margin-right: 8px;
}


/* ===========================
   STICKY CTA (Coupang Style)
   =========================== */

.bottom-spacer {
  height: 80px;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-info {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sticky-cta-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

.sticky-cta-label {
  font-size: 13px;
  color: var(--gray-light);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--black);
  border: none;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.sticky-cta-btn:hover {
  background: #33ff33;
  box-shadow: 0 0 20px var(--accent-glow);
}


/* ===========================
   PURCHASE PAGE
   =========================== */

.purchase-page {
  padding-top: 60px;
  min-height: 100vh;
  background: var(--black);
}

.purchase-benefits {
  padding-top: 20px;
}

.purchase-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.purchase-title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
  color: var(--white);
}

.purchase-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.ticket-info-card {
  background: var(--dark-card);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 20px var(--accent-glow);
}

.ticket-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticket-option {
  cursor: pointer;
}

.ticket-option input {
  display: none;
}

.ticket-card {
  background: var(--dark-card);
  border: 2px solid var(--gray);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s;
  position: relative;
}

.ticket-option input:checked + .ticket-card {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.ticket-badge-sm {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 3px 10px;
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
}

.ticket-name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.ticket-desc {
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.ticket-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

.ticket-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-light);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--dark-card);
  border: 1px solid var(--gray);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.qty-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  min-width: 40px;
  text-align: center;
}

.qty-note {
  font-size: 12px;
  color: var(--gray-light);
}

.form-input {
  padding: 12px 16px;
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--accent);
}

.purchase-summary {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--white-soft);
}

.summary-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--gray);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.summary-row.total span:last-child {
  font-family: var(--font-mono);
  color: var(--accent);
}

.purchase-btn {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--black);
  border: none;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.2s;
}

.purchase-btn:hover {
  background: #33ff33;
  box-shadow: 0 0 30px var(--accent-glow);
}

.purchase-notice {
  text-align: center;
  font-size: 12px;
  color: var(--gray-light);
}


/* ===========================
   ANIMATIONS
   =========================== */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 480px) {
  .benefits-cards {
    gap: 8px;
  }

  .benefit-card {
    padding: 16px 12px;
  }

  .benefit-text strong {
    font-size: 13px;
  }

  .benefit-text span {
    font-size: 11px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .steps-container {
    padding: 0 16px 32px;
  }

  .pricing-container {
    padding: 0 16px 24px;
  }

  .hero-title {
    letter-spacing: 2px;
  }

  .hero-location {
    letter-spacing: 6px;
  }

  .sticky-cta-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .pricing-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .pricing-card {
    flex: 1;
  }

  .steps-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .step-card {
    flex: 0 0 calc(50% - 40px);
  }

  .step-arrow {
    display: none;
  }

  .step-arrow {
    transform: rotate(0);
  }
}
