/* ============================================================
   地下城与新娘 - Dungeon & Bride
   Theme: Wedding Veil Whites × Dungeon Stone Grays
   Motifs: Bouquet & Sword dual motifs
   ============================================================ */

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

/* ========== CSS VARIABLES ========== */
:root {
  /* Background palette */
  --bg: #faf8f5;
  --bg-warm: #fffaf7;
  --bg-card: #ffffff;
  --bg-section-alt: #f5f2ed;
  --bg-hero-overlay: rgba(74, 74, 74, 0.50);

  /* Stone grays */
  --stone-dark: #3a3a3c;
  --stone-mid: #6b6b6d;
  --stone-light: #8a8a8c;
  --stone-border: #c4c0ba;

  /* Wedding veil whites */
  --veil-white: #faf8f5;
  --veil-cream: #f7f2ec;
  --veil-lace: #ede6dc;

  /* Bouquet accent - rose + lavender */
  --rose-pink: #d4858b;
  --rose-pink-light: #f2d4d7;
  --lavender: #b8a0cc;
  --lavender-light: #e4d8f0;
  --bouquet-green: #7a9a7e;

  /* Sword steel accents */
  --steel: #8b9aaa;
  --steel-light: #bbc8d4;
  --steel-dark: #5a6a7a;

  /* Text */
  --text: #2c2c2e;
  --text-soft: #5a5a5c;
  --text-muted: #8a8a8c;
  --text-on-dark: #f5f2ed;

  /* Accent gold for highlights */
  --gold: #c4a44a;
  --gold-light: #f0e4c0;

  /* Danger red for warnings */
  --danger-red: #c44a4a;

  /* UI */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 3px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 6px 24px rgba(0,0,0,0.10);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Fonts */
  --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', serif;
  --font-sans: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;

  /* Transitions */
  --transition: 0.25s ease;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}
/* Decorative body pattern - subtle stone + lace motif */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 20%, var(--lavender-light) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, var(--rose-pink-light) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--veil-cream) 0%, transparent 70%);
  opacity: 0.5;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== SR-ONLY (screen reader only) ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--stone-dark);
  border-bottom: 3px solid var(--rose-pink);
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
}
.header-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-logo::before {
  content: '⚔';
  font-size: 1.1rem;
}
.header-logo::after {
  content: '💐';
  font-size: 1.1rem;
}
/* Navigation */
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: var(--steel-light);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.08);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--rose-pink), #c07078);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(212,133,139,0.35);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,133,139,0.45);
  background: linear-gradient(135deg, #e09098, var(--rose-pink));
}
/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  padding: 60px 24px 80px;
  text-align: center;
  overflow: hidden;
  background: var(--stone-dark);
}
.hero-home { padding: 60px 24px 80px; }
.hero-subpage { padding: 40px 24px 48px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.hero-home .hero-bg { background-image: url('../img/header.webp'); }
.hero-guide .hero-bg { background-image: url('../img/screenshot-02.webp'); }
.hero-story .hero-bg { background-image: url('../img/screenshot-03.webp'); }
.hero-characters .hero-bg { background-image: url('../img/screenshot-01.webp'); }
.hero-faq .hero-bg { background-image: url('../img/header.webp'); }

/* Ornamental overlay - sword + bouquet motif */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, var(--rose-pink) 48%, var(--rose-pink) 49%, transparent 49%),
    linear-gradient(225deg, transparent 48%, var(--lavender) 48%, var(--lavender) 49%, transparent 49%);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--steel-light);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.6;
}
.hero-subpage-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 12px;
  line-height: 1.3;
}
.hero h1 .jp-subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--steel-light);
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.hero-title-main {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 12px;
  line-height: 1.3;
}
.hero-title-main .jp-subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--steel-light);
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--steel-light);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--steel-light);
  font-weight: 500;
}

/* ========== SECTION BASICS ========== */
.section {
  padding: 64px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-alt {
  background: var(--bg-section-alt);
  max-width: 100%;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--stone-dark);
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-pink), var(--lavender));
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 48px;
  font-size: 0.95rem;
}
.section-title-group {
  text-align: center;
  margin-bottom: 40px;
}
.section-title-group-spaced { margin-top: 48px; }

/* ========== CARD GRIDS ========== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-border);
  border-left: 4px solid var(--rose-pink);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--stone-dark);
  margin-bottom: 8px;
}
.card p {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Feature cards - index */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-border);
  border-top: 3px solid var(--steel);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:nth-child(even) { border-top-color: var(--rose-pink); }
.feature-card:nth-child(3n) { border-top-color: var(--lavender); }
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--veil-lace);
  position: absolute;
  top: 8px;
  right: 20px;
  line-height: 1;
  opacity: 0.6;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--stone-dark);
  margin-bottom: 6px;
}
.feature-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========== SCREENSHOT GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--stone-border);
}
.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-border);
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--rose-pink);
  line-height: 1;
  opacity: 0.3;
}
.review-stars { color: var(--gold); margin: 8px 0; font-size: 1rem; }
.review-text {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.8;
}
.review-author {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
  font-weight: 500;
}

/* ========== CTA BANNER (index only) ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--stone-dark), #2a2a2f);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Sword & bouquet decorative */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, var(--rose-pink) 0%, transparent 25%),
    radial-gradient(circle at 80% 50%, var(--lavender) 0%, transparent 25%);
  opacity: 0.08;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: var(--steel-light);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--rose-pink), #c07078);
  color: #fff;
  padding: 14px 40px;
  border-radius: 28px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212,133,139,0.4);
  position: relative;
  z-index: 1;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,133,139,0.5);
}

/* ========== GAME INFO TABLE ========== */
.game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.info-item {
  text-align: center;
  background: var(--bg-card);
  padding: 20px 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-border);
}
.info-item .info-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--rose-pink);
}
.info-item .info-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========== STORY / GUIDE CONTENT ========== */
.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}
.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--stone-dark);
  margin-bottom: 12px;
}
.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--stone-dark);
  margin-top: 32px;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--rose-pink);
}
.content-section h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stone-mid);
  margin-top: 20px;
  margin-bottom: 8px;
}
.content-section p {
  color: var(--text-soft);
  margin-bottom: 14px;
  line-height: 1.85;
  font-size: 0.95rem;
}
.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lavender);
}

/* ========== CHARACTER CARDS ========== */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.char-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-border);
  border-top: 4px solid var(--rose-pink);
  transition: var(--transition);
}
.char-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.char-card:nth-child(even) { border-top-color: var(--lavender); }
.char-card:nth-child(3n) { border-top-color: var(--steel); }
.char-card-img {
  width: 100%;
  height: 200px;
  background: var(--bg-section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.char-card-body { padding: 20px; }
.char-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--stone-dark);
  margin-bottom: 4px;
}
.char-card-body .char-role {
  font-size: 0.85rem;
  color: var(--rose-pink);
  font-weight: 600;
  margin-bottom: 10px;
}
.char-card-body p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.char-trait {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  background: var(--bg-section-alt);
  color: var(--text-muted);
  font-weight: 500;
}

/* ========== TABLE (guide/faq) ========== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
thead th {
  background: var(--stone-dark);
  color: var(--text-on-dark);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--stone-border);
  color: var(--text-soft);
}
tbody tr:hover { background: var(--bg-section-alt); }
.table-scroll { overflow-x: auto; }
.td-highlight { color: var(--rose-pink); font-weight: 700; }

/* ========== TIPS BOX ========== */
.tips-box {
  background: linear-gradient(135deg, var(--gold-light), #f5edc8);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  position: relative;
}
.tips-box::before {
  content: '💡';
  font-size: 1.3rem;
  margin-right: 8px;
}
.tips-box p {
  margin: 0;
  color: var(--stone-dark);
  font-weight: 500;
  display: inline;
}

/* ========== FAQ ACCORDION ========== */
.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-sm);
  border: 1px solid var(--stone-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-section-alt); }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--rose-pink);
  font-weight: 300;
  transition: var(--transition);
}
.faq-item.active .faq-question::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.8;
}
.faq-note { margin-top: 16px; }

/* ========== GUIDE STEP ========== */
.guide-steps {
  counter-reset: guide-step;
}
.guide-step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-border);
  position: relative;
  padding-left: 60px;
}
.guide-step::before {
  counter-increment: guide-step;
  content: '0' counter(guide-step);
  position: absolute;
  left: 16px;
  top: 22px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--rose-pink);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-step h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--stone-dark);
  margin-bottom: 6px;
  font-size: 1.05rem;
  border-left: none;
  padding-left: 0;
  margin-top: 0;
}
.guide-step p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.guide-steps-wrapper { counter-reset: guide-step; }
.guide-intro { font-size: 1rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 32px; }
.route-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--lavender);
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 8px;
}
.route-desc { font-size: 0.93rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 16px; }

/* ========== PROSE HELPERS ========== */
.prose-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 0.95rem;
}
.prose-centered:last-of-type {
  margin-bottom: 40px;
}
.game-info-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0;
}

/* ========== CHARACTER PAGE CONTENT ========== */
.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

/* ========== CONTENT LIST CLASSES ========== */
.content-list { list-style: disc; padding-left: 20px; }
.content-list-num { list-style: decimal; padding-left: 24px; }
.content-li { margin-bottom: 5px; color: var(--text-soft); }
.content-li-sm { margin-bottom: 4px; color: var(--text-soft); }
.content-li-md { margin-bottom: 8px; color: var(--text-soft); }
.content-li-lg { margin-bottom: 10px; color: var(--text-soft); }

/* ========== COLORED STRONG TAGS ========== */
.strong-pink { color: var(--rose-pink); }
.strong-red { color: var(--danger-red); }
.strong-gold { color: var(--gold); }
.strong-muted { color: var(--text-muted); }
.strong-navy { color: var(--stone-dark); }

/* ========== SYSTEM REQUIREMENTS ========== */
.sys-reqs-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--stone-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}
.sys-reqs-h3:first-of-type { margin-top: 8px; }
.section-subheading { text-align: center; margin: 40px 0 24px; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--stone-dark);
  border-top: 3px solid var(--rose-pink);
  text-align: center;
  padding: 32px 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.site-footer p { margin: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--stone-dark);
    padding: 16px 24px;
    border-bottom: 3px solid var(--rose-pink);
    gap: 8px;
  }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero-title-main { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-subpage-title { font-size: 1.6rem; }
  .section { padding: 40px 16px; }
  .section-title { font-size: 1.6rem; }
  .card-grid, .feature-grid, .reviews-grid { grid-template-columns: 1fr; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .content-section { padding: 32px 16px; }
  .content-section h2 { font-size: 1.6rem; }
  .char-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-title-main { font-size: 1.6rem; }
  .hero h1 .jp-subtitle { font-size: 0.9rem; }
  .hero-title-main .jp-subtitle { font-size: 0.9rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-badge { font-size: 0.75rem; padding: 4px 10px; }
  .game-info-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .char-grid { grid-template-columns: 1fr; }
  .guide-step { padding-left: 48px; }
  .header-cta { font-size: 0.8rem; padding: 6px 14px; }
}
