/* ========================================
   爱欲之都 City Lights Love Bites
   Neon Night City Theme
   Electric Magenta + Midnight Neon Blues
   City-Skyline Silhouettes on Light Dusk BG
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Neon palette */
  --accent: #e0409a;
  --accent-hover: #f062b8;
  --accent-light: #fce4f2;
  --accent-glow: rgba(224, 64, 154, 0.4);
  --neon-blue: #4a8fe7;
  --neon-blue-hover: #6aa8ff;
  --neon-blue-light: #e8f0fc;
  --neon-blue-glow: rgba(74, 143, 231, 0.4);
  --neon-cyan: #00d4e8;
  --neon-cyan-glow: rgba(0, 212, 232, 0.35);

  /* Midnight / dark elements */
  --midnight: #0e0e28;
  --midnight-light: #1a1a42;
  --midnight-card: #1e1e4a;

  /* Light dusk background */
  --bg: #efeaf5;
  --bg-card: #faf8fc;
  --bg-alt: #e8e2f2;

  /* Text */
  --text: #1a1a2e;
  --text-light: #5a5a7a;
  --text-muted: #8888a8;
  --text-on-dark: #e8e0f0;
  --text-on-dark-muted: #b0a0c8;

  /* Functional */
  --white: #ffffff;
  --border: #d8d0e8;
  --border-light: #e8e2f2;
  --shadow: 0 2px 12px rgba(14, 14, 40, 0.08);
  --shadow-lg: 0 8px 32px rgba(14, 14, 40, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;

  /* Typography */
  --font: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

/* Body dusk glow — subtle midnight+magenta+cyan radial orbs */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(74, 143, 231, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(224, 64, 154, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 212, 232, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 60%, rgba(74, 143, 231, 0.04) 0%, transparent 40%);
}

/* ---- City Skyline Silhouette ---- */
body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  pointer-events: none;
  z-index: 0;
  background:
    /* Tall building left */
    linear-gradient(180deg, transparent 0%, rgba(14,14,40,0.06) 40%, rgba(14,14,40,0.12) 100%),
    radial-gradient(ellipse 20px 60px at 8% 95%, rgba(14,14,40,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 15px 80px at 18% 98%, rgba(14,14,40,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 18px 50px at 28% 96%, rgba(14,14,40,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 12px 70px at 40% 97%, rgba(14,14,40,0.13) 0%, transparent 50%),
    radial-gradient(ellipse 22px 55px at 52% 94%, rgba(14,14,40,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 16px 65px at 65% 96%, rgba(14,14,40,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 14px 75px at 78% 98%, rgba(14,14,40,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 20px 45px at 90% 95%, rgba(14,14,40,0.14) 0%, transparent 50%);
}

/* ---- Layout ---- */
main { position: relative; z-index: 1; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---- Header ---- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--midnight);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 2px 20px rgba(14, 14, 40, 0.3);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--neon-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: 0.5px;
}
.logo-text span { color: var(--accent); }

nav { display: flex; align-items: center; gap: 28px; }
nav a {
  text-decoration: none;
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
nav a:hover,
nav a.active { color: var(--accent-hover); }
nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Nav CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent), var(--neon-blue));
  color: var(--white) !important;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 16px var(--accent-glow), 0 0 8px var(--neon-blue-glow);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px var(--accent-glow), 0 0 12px var(--neon-blue-glow);
  background: linear-gradient(135deg, var(--accent-hover), var(--neon-blue-hover));
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--midnight-light) 0%, var(--midnight) 50%, var(--bg) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, var(--neon-blue-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, var(--accent-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 60%, var(--neon-cyan-glow) 0%, transparent 40%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  filter: blur(2px) brightness(0.7);
}

/* Per-page hero backgrounds */
.hero-home .hero-bg { background-image: url('../img/cover.webp'); }
.hero-story .hero-bg { background-image: url('../img/screenshot-02.jpg'); }
.hero-guide .hero-bg { background-image: url('../img/screenshot-03.jpg'); }
.hero-characters .hero-bg { background-image: url('../img/screenshot-04.jpg'); }
.hero-faq .hero-bg { background-image: url('../img/cover.webp'); }

/* Hero tags */
.hero-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-tags .tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Hero title */
.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--accent-hover), var(--neon-blue-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA */
.hero-cta-wrap { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), var(--neon-blue));
  color: var(--white);
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px var(--accent-glow), 0 0 18px var(--neon-blue-glow);
}
.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

/* ---- Page Hero (sub-pages) ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--midnight-light) 0%, var(--midnight) 60%, var(--bg) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, var(--neon-blue-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, var(--accent-glow) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.page-hero .subtitle {
  color: var(--text-on-dark-muted);
  font-size: 1rem;
}

/* ---- Sections ---- */
section { padding: 60px 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--midnight);
  margin-bottom: 8px;
}
.section-title-accent {
  display: inline-block;
  width: 50px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--neon-blue));
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}
.section-alt { background: var(--bg-alt); }

/* ---- Neon Divider ---- */
.neon-divider {
  width: 100%;
  max-width: 200px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--accent), var(--neon-blue), var(--neon-cyan), transparent);
  border-radius: 2px;
}
.neon-divider-full {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), var(--neon-blue-glow), var(--neon-cyan-glow), var(--accent-glow), transparent);
}

/* ---- Info Grid ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.info-card-icon { font-size: 2rem; margin-bottom: 10px; }
.info-card h3 { font-size: 0.95rem; color: var(--midnight); margin-bottom: 4px; }
.info-card p { font-size: 0.85rem; color: var(--text-light); }

/* ---- Feature Cards ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: all 0.3s;
}
.feature-card:hover {
  border-left-color: var(--neon-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feature-card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 1.1rem;
  color: var(--midnight);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- Story Blocks ---- */
.story-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--neon-blue);
}
.story-block h3 {
  font-size: 1.2rem;
  color: var(--midnight);
  margin-bottom: 10px;
}
.story-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}
.story-chapter {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--neon-blue-light);
  color: var(--neon-blue);
  margin-bottom: 10px;
}

/* ---- Character Cards ---- */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.char-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border-light);
}
.char-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.char-card-header {
  background: linear-gradient(135deg, var(--midnight), var(--accent));
  padding: 32px 24px 20px;
  text-align: center;
  position: relative;
}
.char-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--accent-hover), var(--neon-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid rgba(255,255,255,0.2);
}
.char-card-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.char-role {
  color: var(--text-on-dark-muted);
  font-size: 0.82rem;
  font-weight: 500;
}
.char-card-body { padding: 20px 24px 24px; }
.char-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.char-traits { display: flex; gap: 8px; flex-wrap: wrap; }
.char-traits .tag {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}
.char-card-centered {
  max-width: 480px;
  margin: 0 auto;
}
.char-card-centered .char-card-header {
  padding: 40px 24px 24px;
}

/* ---- Guide Steps ---- */
.guide-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.guide-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--neon-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 0 12px var(--accent-glow);
}
.guide-step-content h3 {
  font-size: 1.1rem;
  color: var(--midnight);
  margin-bottom: 6px;
}
.guide-step-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Tips ---- */
.tip-box {
  background: var(--neon-blue-light);
  border-left: 4px solid var(--neon-blue);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text);
}
.tip-box strong { color: var(--neon-blue); }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 24px var(--accent-glow);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--midnight);
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
  font-weight: 700;
}
.faq-item.open .faq-toggle {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-answer ul {
  padding-left: 20px;
  margin-top: 6px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.faq-answer ul li { margin-bottom: 4px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--midnight), var(--midnight-light));
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, var(--accent-glow) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, var(--neon-blue-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-banner p {
  color: var(--text-on-dark-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}
.cta-banner .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--accent), var(--neon-blue));
  color: var(--white);
  border-radius: 28px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--accent-glow);
}
.cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--accent-glow), 0 0 16px var(--neon-blue-glow);
}

/* ---- Download Card ---- */
.download-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 2px solid var(--accent);
  max-width: 500px;
  margin: 0 auto;
}
.download-card h3 { font-size: 1.2rem; color: var(--midnight); margin-bottom: 16px; text-align: center; }
.download-card .info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.download-card .info-row:last-child { border-bottom: none; }
.download-card .info-label { color: var(--text-muted); }
.download-card .info-value { color: var(--text); font-weight: 500; }
.download-card .btn-primary {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), var(--neon-blue));
  color: var(--white);
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 16px var(--accent-glow);
}
.download-card .btn-primary:hover {
  box-shadow: 0 0 28px var(--accent-glow);
  transform: translateY(-1px);
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--accent); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---- Tags ---- */
.tag { display: inline-block; font-size: 0.78rem; padding: 4px 12px; border-radius: 14px; font-weight: 500; }
.tag-accent { background: var(--accent-light); color: var(--accent); }
.tag-blue { background: var(--neon-blue-light); color: var(--neon-blue); }
.tag-cyan { background: rgba(0,212,232,0.1); color: var(--neon-cyan); }
.tag-dark { background: rgba(14,14,40,0.06); color: var(--midnight); }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---- Stats Row ---- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  margin: 32px 0;
}
.stat-item h3 {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Review / Rating ---- */
.review-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--neon-blue);
  margin-bottom: 20px;
}
.review-quote { font-size: 0.95rem; color: var(--text-light); font-style: italic; margin-bottom: 10px; line-height: 1.7; }
.review-author { font-size: 0.85rem; color: var(--accent); font-weight: 600; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--neon-blue), var(--neon-cyan));
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.timeline-date { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 4px; }
.timeline-item h3 { font-size: 1rem; color: var(--midnight); margin-bottom: 4px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-light); }

/* ---- Info Table ---- */
.info-table { width: 100%; max-width: 600px; margin: 0 auto; }
.info-table tr { border-bottom: 1px solid var(--border-light); }
.info-table td { padding: 12px 16px; font-size: 0.9rem; }
.info-table td:first-child { color: var(--text-muted); white-space: nowrap; font-weight: 500; width: 120px; }
.info-table td:last-child { color: var(--text); }

/* ---- Blockquote ---- */
blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-style: italic;
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.pb-0 { padding-bottom: 0; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 14, 40, 0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.show { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 0 40px var(--accent-glow);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ---- Footer ---- */
footer {
  background: var(--midnight);
  color: var(--text-on-dark-muted);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
footer p { margin: 0; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.9rem; }
  section { padding: 40px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .gallery-grid { grid-template-columns: 1fr; }
  .char-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 20px; }

  /* Mobile nav */
  nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--midnight);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 99;
  }
  nav.show { transform: translateX(0); }
  nav a { font-size: 1.1rem; }
  .hamburger { display: flex; }

  .cta-banner { padding: 32px 24px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .guide-step { flex-direction: column; gap: 12px; }
  .timeline { padding-left: 24px; }
  .download-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 1.5rem; }
  .btn-hero { padding: 12px 24px; font-size: 0.9rem; }
  .section-header h2 { font-size: 1.3rem; }
  .info-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 12px; }
  .stat-item h3 { font-size: 1.2rem; }
}
