/* ============================================================
   Demons Roots 中文官网 — 堕邪女神（恶魔之根）
   Dark Fantasy RPG Theme
   Color Palette: 血红色 #C62828 / 暗紫 #6A1B9A / 深渊黑 / 羊皮纸 #F5F0E0
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
  /* Primary palette */
  --blood-red: #C62828;
  --blood-red-dark: #8E0000;
  --blood-red-light: #FF5F52;
  --dark-purple: #6A1B9A;
  --dark-purple-dark: #38006B;
  --dark-purple-light: #9C4DCC;
  --abyss-black: #1A0A2E;
  --abyss-dark: #0D0418;

  /* Background & surface */
  --bg: #F5F0E0;
  --bg-alt: #EDE7D3;
  --surface: #FFFFFF;
  --surface-alt: #FDF8EE;

  /* Text */
  --text: #2C1810;
  --text-soft: #5C4A3E;
  --text-muted: #8C7A6E;
  --text-light: #C4B5A5;
  --text-on-dark: #F5F0E0;

  /* Accent */
  --accent-gold: #D4A017;
  --accent-gold-light: #F0C040;
  --danger-red: #C62828;
  --success-green: #2E7D32;

  /* Borders */
  --border: #D4C5B0;
  --border-light: #E8DCC8;

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

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 5, 20, 0.12);
  --shadow-md: 0 4px 12px rgba(10, 5, 20, 0.18);
  --shadow-lg: 0 8px 30px rgba(10, 5, 20, 0.25);
  --shadow-xl: 0 12px 40px rgba(10, 5, 20, 0.35);

  /* Sizing */
  --header-height: 64px;
  --max-width: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

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

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

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

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

a {
  color: var(--blood-red);
  text-decoration: none;
  transition: color 0.2s;
}

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

ul, ol {
  list-style: none;
}

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

/* ========== HEADER ========== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--abyss-black);
  border-bottom: 3px solid var(--blood-red);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-dark);
  text-decoration: none;
}

.header-logo img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.header-logo:hover {
  color: var(--blood-red-light);
}

nav.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav.header-nav a {
  color: #C4B5A5;
  padding: 8px 14px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

nav.header-nav a:hover,
nav.header-nav a.active {
  color: var(--text-on-dark);
  background: rgba(198, 40, 40, 0.2);
}

/* Header CTA button */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blood-red);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: var(--border-radius);
  font-weight: 700 !important;
  font-size: 0.9rem;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.4);
}

.btn-header-cta:hover {
  background: var(--blood-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(198, 40, 40, 0.5);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--abyss-black) 0%, var(--dark-purple-dark) 40%, var(--abyss-dark) 100%);
  padding: 60px 24px 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(198, 40, 40, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(106, 27, 154, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(198, 40, 40, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: var(--max-width);
  width: 100%;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 12px rgba(198, 40, 40, 0.5), 0 0 40px rgba(106, 27, 154, 0.3);
  margin-bottom: 10px;
  line-height: 1.3;
}

.hero-title-main .jp-subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--blood-red-light);
  margin-top: 6px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(198, 40, 40, 0.3);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Sub-page hero */
.hero-subpage {
  padding: 40px 24px 48px;
}

.hero-subpage .hero-title-main,
.hero-subpage-title {
  font-size: 2rem;
  font-weight: 700;
}

/* ========== SECTIONS ========== */
.section {
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-alt);
}

.section-no-padding {
  padding: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--abyss-black);
  text-align: center;
  margin-bottom: 12px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blood-red), var(--dark-purple));
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-group {
  margin-bottom: 40px;
}

.section-title-group-spaced {
  margin-top: 48px;
}

/* Centered prose for game overview */
.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 CARDS (index) ========== */
.game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.info-card {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--blood-red);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.info-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--abyss-black);
  margin-bottom: 4px;
}

.info-card-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blood-red);
}

.game-info-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0;
}

/* ========== FEATURE CARDS (index) ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--dark-purple);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--abyss-black);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ========== SCREENSHOT GALLERY (index) ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 5, 20, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
}

.lightbox-close:hover {
  color: var(--blood-red-light);
}

/* ========== REVIEWS SECTION (index) ========== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-gold);
}

.review-card blockquote {
  font-style: italic;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
  quotes: "\201C" "\201D";
}

.review-card blockquote::before {
  content: open-quote;
  font-size: 2rem;
  color: var(--accent-gold);
  line-height: 0;
  vertical-align: -0.3em;
}

.review-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--abyss-black);
  font-size: 0.85rem;
}

.review-card cite::before {
  content: '— ';
  color: var(--accent-gold);
}

/* ========== CTA BANNER (index ONLY) ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--abyss-black) 0%, var(--dark-purple-dark) 100%);
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(198, 40, 40, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(106, 27, 154, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner .section {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.cta-banner p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 24px;
}

.btn-cta-large {
  display: inline-block;
  background: var(--blood-red);
  color: #fff;
  padding: 14px 40px;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(198, 40, 40, 0.5);
}

.btn-cta-large:hover {
  background: var(--blood-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(198, 40, 40, 0.6);
}

/* ========== CONTENT PAGE PATTERNS ========== */
.content-section {
  padding: 48px 24px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

/* ========== GUIDE PAGE ========== */
.guide-step {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--blood-red);
  counter-increment: guide-step;
}

.guide-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--abyss-black);
  margin-bottom: 10px;
}

.guide-step h3::before {
  content: 'Step ' counter(guide-step) '：';
  color: var(--blood-red);
}

.guide-steps-wrapper {
  counter-reset: guide-step;
}

.guide-intro {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.route-desc {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.route-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-purple);
  margin: 24px 0 12px;
}

.tip-box {
  background: rgba(198, 40, 40, 0.06);
  border: 1px solid rgba(198, 40, 40, 0.2);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.tip-box strong {
  color: var(--blood-red);
}

/* ========== STORY PAGE ========== */
.chapter-block {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--dark-purple);
}

.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-purple);
  margin-bottom: 10px;
}

.chapter-block p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.85;
}

.ending-card {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-gold);
}

.ending-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

/* ========== CHARACTERS PAGE ========== */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.character-card {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--dark-purple);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.character-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.character-card-body {
  padding: 20px;
}

.character-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--abyss-black);
  margin-bottom: 6px;
}

.character-title {
  font-size: 0.85rem;
  color: var(--blood-red);
  font-weight: 600;
  margin-bottom: 10px;
}

.character-card-body p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.char-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.char-tag {
  display: inline-block;
  background: rgba(106, 27, 154, 0.1);
  color: var(--dark-purple);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.section-subheading {
  text-align: center;
  margin: 40px 0 24px;
}

/* ========== FAQ PAGE ========== */
.faq-intro {
  color: var(--text-soft);
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-left: 4px solid var(--border);
  transition: border-color 0.2s;
}

.faq-item.active {
  border-left-color: var(--blood-red);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blood-red);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 24px 20px;
}

.faq-note {
  margin-top: 16px;
}

/* System requirements table */
.sys-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}

.sys-table th,
.sys-table td {
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  text-align: left;
}

.sys-table th {
  background: rgba(106, 27, 154, 0.08);
  color: var(--dark-purple);
  font-weight: 700;
  width: 100px;
}

.sys-table td {
  color: var(--text-soft);
}

.table-scroll {
  overflow-x: auto;
}

.sys-reqs-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-purple);
  margin-top: 24px;
  margin-bottom: 12px;
}

.sys-reqs-h3:first-of-type {
  margin-top: 8px;
}

.sys-note {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========== CONTENT LISTS ========== */
.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-red {
  color: var(--danger-red);
}

.strong-gold {
  color: var(--accent-gold);
}

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

.strong-purple {
  color: var(--dark-purple);
}

/* ========== TABLE HIGHLIGHT ========== */
.td-highlight {
  color: var(--blood-red);
  font-weight: 700;
}

/* ========== FOOTER ========== */
footer.site-footer {
  background: var(--abyss-black);
  padding: 24px;
  text-align: center;
  border-top: 3px solid var(--blood-red);
}

footer.site-footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .header-inner {
    padding: 0 16px;
  }

  nav.header-nav a {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .btn-header-cta {
    padding: 6px 14px !important;
    font-size: 0.8rem;
  }

  .hero {
    padding: 40px 20px 60px;
  }

  .hero-title-main {
    font-size: 2rem;
  }

  .hero-title-main .jp-subtitle {
    font-size: 0.9rem;
  }

  .hero-subpage .hero-title-main,
  .hero-subpage-title {
    font-size: 1.6rem;
  }

  .section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .content-section {
    padding: 32px 20px 48px;
  }

  .content-section h2 {
    font-size: 1.8rem;
  }

  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .character-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

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

  .cta-banner h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .header-logo {
    font-size: 1rem;
  }

  nav.header-nav {
    gap: 2px;
  }

  nav.header-nav a {
    padding: 5px 7px;
    font-size: 0.75rem;
  }

  .btn-header-cta {
    padding: 5px 10px !important;
    font-size: 0.75rem;
  }

  .hero {
    padding: 32px 16px 48px;
  }

  .hero-title-main {
    font-size: 1.6rem;
  }

  .hero-title-main .jp-subtitle {
    font-size: 0.8rem;
  }

  .hero-subpage .hero-title-main,
  .hero-subpage-title {
    font-size: 1.3rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .section {
    padding: 32px 16px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .content-section {
    padding: 24px 16px 40px;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

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

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

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

  .feature-card,
  .review-card {
    padding: 20px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 16px;
    font-size: 0.85rem;
  }

  .cta-banner h2 {
    font-size: 1.3rem;
  }

  .btn-cta-large {
    padding: 12px 28px;
    font-size: 1rem;
  }
}
