/* ============================================================
   不洁圣女 (Unholy Saintess) — Unholy Corrupted Saint Theme
   Tainted-halo golds, sin-purples, desecrated-church motifs
   Light ash background — Gothic corrupted elegance
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
  /* Core palette */
  --bg-ash: #F5F3F0;
  --bg-white: #FFFFFF;
  --bg-warm: #EDE9E2;
  --bg-dark: #1A1418;
  --bg-card: #FAF8F5;

  /* Tainted-halo golds */
  --gold-primary: #C4963F;
  --gold-bright: #D4A84B;
  --gold-pale: #E8D5A3;
  --gold-dark: #8B6914;
  --gold-glow: #F0D878;

  /* Sin-purples */
  --purple-primary: #7B4B8A;
  --purple-deep: #4A2060;
  --purple-dark: #2E1240;
  --purple-light: #A87DB8;
  --purple-pale: #D4C0E0;

  /* Text */
  --text-primary: #1A1418;
  --text-secondary: #5C4E58;
  --text-muted: #8A7E85;
  --text-light: #B0A5AA;

  /* Accents */
  --accent-crimson: #8B2233;
  --accent-ember: #C45A3D;
  --border-subtle: #D8D0C8;
  --border-gold: #C4963F;

  /* Shadows & overlays */
  --shadow-sm: 0 1px 3px rgba(26,20,24,0.06);
  --shadow-md: 0 4px 16px rgba(26,20,24,0.10);
  --shadow-lg: 0 8px 32px rgba(26,20,24,0.14);
  --shadow-gold: 0 0 20px rgba(196,150,63,0.15);

  /* Layout */
  --max-width: 1100px;
  --nav-height: 64px;

  /* Typography */
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
  --font-serif: 'Noto Serif SC', 'STSong', 'SimSun', 'Songti SC', Georgia, serif;
  --font-display: 'Noto Serif SC', 'STSong', Georgia, serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-ash);
  color: var(--text-primary);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--purple-deep);
}

/* ========== UTILITY CLASSES ========== */
.prose {
  max-width: 800px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-warm);
  padding-top: 0;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========== HEADER & NAVIGATION ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--purple-light), var(--gold-bright), transparent);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--purple-deep);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--purple-light));
  opacity: 0.85;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--purple-deep);
  background: rgba(123,75,138,0.06);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.3rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  color: var(--bg-white) !important;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: var(--bg-white) !important;
}

.nav-cta-icon {
  font-size: 1.1em;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,20,24,0.65) 0%,
    rgba(42,18,50,0.55) 40%,
    rgba(26,20,24,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(212,168,75,0.2);
  border: 1px solid rgba(212,168,75,0.4);
  border-radius: 20px;
  color: var(--gold-pale);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(26,20,24,0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  color: var(--bg-white);
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 24px rgba(196,150,63,0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(196,150,63,0.45);
  color: var(--bg-white);
}

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

/* ========== CONTENT SECTIONS ========== */
.content-section {
  padding: 4rem 1.5rem;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Section header with decorative divider */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Decorative divider — desecrated church motif */
.divider-church {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.divider-church::before,
.divider-church::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border-subtle);
}

.divider-church-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  position: relative;
  opacity: 0.5;
}

.divider-church-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  background: var(--gold-primary);
  border-radius: 50%;
}

/* ========== SECTION: GAME INTRO (index) ========== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.intro-text h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.intro-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.intro-image img {
  width: 100%;
  height: auto;
}

/* ========== INFO GRID CARDS (index) ========== */
.info-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.25s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.info-card-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.info-card-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple-deep);
}

/* ========== FEATURE CARDS (index) ========== */
.features-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--purple-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123,75,138,0.1), rgba(196,150,63,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== SCREENSHOT GALLERY ========== */
.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-subtle);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.8rem;
  position: relative;
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-pale);
  opacity: 0.3;
  line-height: 1;
}

.review-stars {
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}

.star-dim {
  color: var(--text-muted);
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Overall rating display */
.rating-display {
  text-align: center;
  margin-bottom: 3rem;
}

.rating-big {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.rating-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.rating-detail {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  color: var(--bg-white);
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(196,150,63,0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,150,63,0.4);
  color: var(--bg-white);
}

/* ========== GUIDE PAGE ========== */
.guide-toc {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.guide-toc h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.8rem;
  color: var(--purple-deep);
}

.guide-toc ol {
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

.guide-toc li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.guide-toc a {
  color: var(--purple-primary);
}

.guide-toc a:hover {
  color: var(--purple-deep);
}

.guide-step {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  border-left: 4px solid var(--gold-primary);
}

.guide-step h3 {
  font-family: var(--font-serif);
  color: var(--purple-deep);
  margin-bottom: 0.8rem;
}

.guide-step p,
.guide-step ul {
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.guide-step ul {
  padding-left: 1.2rem;
}

.guide-step li {
  margin-bottom: 0.3rem;
}

.guide-tip {
  background: rgba(196,150,63,0.08);
  border: 1px solid rgba(196,150,63,0.25);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.guide-tip strong {
  color: var(--gold-dark);
}

/* ========== STORY PAGE ========== */
.story-block {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.story-block h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--purple-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-subtle);
}

.story-block p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.story-quote {
  background: var(--bg-white);
  border-left: 4px solid var(--gold-primary);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
}

.story-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--purple-deep);
  font-style: italic;
}

/* ========== CHARACTERS PAGE ========== */
.characters-list {
  max-width: 800px;
  margin: 0 auto;
}

.char-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.char-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--purple-light);
}

.char-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--purple-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.char-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--purple-deep);
  margin-bottom: 0.3rem;
}

.char-role {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.char-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.char-trait {
  font-size: 0.78rem;
  padding: 0.2rem 0.7rem;
  background: rgba(123,75,138,0.07);
  color: var(--purple-primary);
  border-radius: 12px;
  border: 1px solid rgba(123,75,138,0.15);
}

/* ========== FAQ ACCORDION ========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: var(--purple-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--purple-primary);
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--purple-primary);
  color: var(--bg-white);
  border-color: var(--purple-primary);
  transform: rotate(45deg);
}

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

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

.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26,20,24,0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.site-footer p {
  color: var(--text-light);
}

.site-footer .footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(212,168,75,0.3);
  margin: 0.8rem auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
  }

  .nav-list.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .char-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .content-section h2,
  .section-header h2 {
    font-size: 1.7rem;
  }
}
