/* ============================================================
   Dark Abyss / Pixel Escape Theme
   Light background with deep void black accents,
   luminescent cyan highlights, pixel art aesthetic.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
  --bg: #f5f0e8;
  --bg-alt: #ebe4d8;
  --bg-card: #faf7f2;
  --bg-void: #0a0a0f;
  --bg-void-light: #12121a;
  --text: #1a1a2e;
  --text-light: #4a4558;
  --text-muted: #7a7488;
  --cyan: #00e5ff;
  --cyan-glow: #00b8d4;
  --cyan-dim: rgba(0, 229, 255, 0.12);
  --cyan-glass: rgba(0, 229, 255, 0.06);
  --void: #0a0a0f;
  --void-glass: rgba(10, 10, 15, 0.85);
  --border: #d8d0c8;
  --border-light: #e8e0d8;
  --shadow: 0 2px 12px rgba(10, 10, 20, 0.08);
  --shadow-lg: 0 6px 28px rgba(10, 10, 20, 0.12);
  --radius: 2px;
  --radius-lg: 6px;
  --font-pixel: 'Press Start 2P', 'Courier New', monospace;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-height: 64px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-glow); text-decoration: none; transition: color 0.2s, text-shadow 0.2s; }
a:hover { color: var(--cyan); text-shadow: 0 0 8px rgba(0,229,255,0.4); }
ul, ol { padding-left: 1.5em; }

/* --- Utility --- */
.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 - dark void with cyan glow --- */
.site-header {
  background: var(--bg-void);
  color: #fff;
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,229,255,0.25);
  box-shadow: 0 0 20px rgba(0,229,255,0.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cyan);
  text-decoration: none;
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(0,229,255,0.5);
  line-height: 1.4;
}
.header-logo:hover { color: #fff; text-shadow: 0 0 16px rgba(0,229,255,0.8); }
.header-logo img { height: 32px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 0.25rem; }
.header-nav a {
  color: #9a95a8;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--cyan);
  background: rgba(0,229,255,0.06);
  text-shadow: 0 0 6px rgba(0,229,255,0.3);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--cyan) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-body);
  border: 1px solid var(--cyan);
  transition: all 0.25s;
  text-shadow: none !important;
}
.nav-cta:hover {
  background: var(--cyan);
  color: var(--bg-void) !important;
  box-shadow: 0 0 20px rgba(0,229,255,0.5);
  text-shadow: none !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cyan);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  font-family: var(--font-pixel);
  line-height: 1;
}

/* --- Hero - dramatic light/dark contrast --- */
.hero {
  background: var(--bg);
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,229,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, var(--bg-void) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--bg-void), var(--cyan), transparent);
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--bg-void);
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.3);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  font-family: var(--font-pixel);
  text-shadow: 0 0 6px rgba(0,229,255,0.4);
}
.hero h1 {
  font-family: var(--font-pixel);
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--bg-void);
  text-shadow: 0 0 2px rgba(0,229,255,0.15);
  letter-spacing: 0.08em;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-img {
  margin: 2rem auto 0;
  max-width: 800px;
}
.hero-img img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0,229,255,0.08);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-void);
  color: var(--cyan) !important;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  border: 1px solid var(--cyan);
  cursor: pointer;
  font-family: var(--font-body);
  text-shadow: none !important;
}
.btn-primary:hover {
  background: var(--cyan);
  color: var(--bg-void) !important;
  box-shadow: 0 0 25px rgba(0,229,255,0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-light);
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s;
  border: 1px solid var(--border);
  font-family: var(--font-body);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  text-shadow: 0 0 6px rgba(0,229,255,0.3);
}

/* --- Sections --- */
.section {
  padding: 4rem 1.5rem;
}
.section-alt {
  background: var(--bg-alt);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--bg-void);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Void Divider --- */
.void-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--bg-void), var(--cyan), var(--bg-void), transparent);
  opacity: 0.5;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,229,255,0.2);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.card-title {
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  color: var(--bg-void);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.card-text {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* --- Info Table --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.info-table th,
.info-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.info-table th {
  color: var(--bg-void);
  font-weight: 600;
  width: 140px;
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.info-table td {
  color: var(--text);
  font-size: 0.93rem;
}

/* --- Tags --- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  display: inline-block;
  background: var(--cyan-dim);
  color: var(--cyan-glow);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0,229,255,0.15);
}

/* --- Screenshot Grid --- */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.screenshot-grid a {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.screenshot-grid a:hover {
  transform: scale(1.03);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0,229,255,0.15);
}
.screenshot-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* --- Feature List --- */
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  padding: 0.8rem 0 0.8rem 1.8rem;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0.8rem;
  color: var(--cyan);
  font-size: 0.7rem;
}
.feature-list li:last-child {
  border-bottom: none;
}

/* --- Guide Steps (numbered circles) --- */
.guide-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.guide-steps li {
  counter-increment: step;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  margin-bottom: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color 0.2s;
}
.guide-steps li:hover {
  border-color: rgba(0,229,255,0.2);
}
.guide-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--bg-void);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-pixel);
}
.guide-steps h3 {
  font-family: var(--font-pixel);
  color: var(--bg-void);
  margin-bottom: 0.5rem;
  font-size: 0.6rem;
  line-height: 1.6;
}
.guide-steps p {
  color: var(--text-light);
  font-size: 0.93rem;
}

/* --- Guide Tips --- */
.guide-tip {
  background: var(--cyan-glass);
  border-left: 3px solid var(--cyan);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 1.5rem 0;
}
.guide-tip h3 {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--cyan-glow);
  margin-bottom: 0.4rem;
}
.guide-tip p {
  color: var(--text-light);
  font-size: 0.93rem;
}

/* --- Character Cards --- */
.character-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.character-card:hover {
  border-color: rgba(0,229,255,0.2);
}
.character-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 2px solid var(--bg-void);
  flex-shrink: 0;
  background: var(--bg-void);
}
.character-info h3 {
  font-family: var(--font-pixel);
  color: var(--bg-void);
  margin-bottom: 0.3rem;
  font-size: 0.65rem;
  line-height: 1.6;
}
.character-role {
  color: var(--cyan-glow);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.character-desc {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.65;
}
.character-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.character-traits span {
  background: var(--cyan-glass);
  color: var(--cyan-glow);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  font-size: 0.78rem;
  border: 1px solid rgba(0,229,255,0.15);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: rgba(0,229,255,0.2);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-void);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--cyan-glass);
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cyan);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* --- Story Content --- */
.story-block {
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.story-block h2 {
  font-family: var(--font-pixel);
  color: var(--bg-void);
  font-size: 0.7rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,229,255,0.25);
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.story-block p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.story-image {
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

/* --- Endings Grid --- */
.endings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.ending-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.ending-card:hover {
  border-color: rgba(0,229,255,0.2);
}
.ending-card .ending-num {
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.ending-card h3 {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--bg-void);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--bg-void);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,229,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(0,229,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,229,255,0.3);
}
.cta-banner p {
  color: #9a95a8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* --- Page Hero (non-index) --- */
.page-hero {
  background: var(--bg-void);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,229,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.page-hero h1 {
  font-family: var(--font-pixel);
  font-size: clamp(0.8rem, 2.5vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,229,255,0.3);
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.page-hero p {
  color: #9a95a8;
  font-size: 1rem;
}

/* --- Table of Contents --- */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.toc h3 {
  font-family: var(--font-pixel);
  color: var(--bg-void);
  margin-bottom: 0.75rem;
  font-size: 0.6rem;
  line-height: 1.6;
}
.toc ol {
  padding-left: 1.5em;
}
.toc li {
  margin-bottom: 0.4rem;
}
.toc a {
  color: var(--cyan-glow);
  font-size: 0.93rem;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--cyan-glow);
}
.breadcrumbs span {
  color: var(--text-muted);
}
.breadcrumbs .current {
  color: var(--text-light);
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-void);
  color: #6a6578;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.8;
  border-top: 1px solid rgba(0,229,255,0.1);
}
.site-footer a {
  color: #9a95a8;
}
.site-footer a:hover {
  color: var(--cyan);
}
.site-footer .disclaimer {
  font-size: 0.75rem;
  color: #4a4558;
  margin-top: 0.5rem;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 10, 0.96);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  border: 1px solid rgba(0,229,255,0.3);
  box-shadow: 0 0 40px rgba(0,229,255,0.1);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-pixel);
}
.lightbox-close:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0,229,255,0.3);
}

/* --- Two Column --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.two-col p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* --- Image with glow border --- */
.img-glow {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,229,255,0.15);
  box-shadow: 0 0 20px rgba(0,229,255,0.06);
}

/* --- Text center utility --- */
.text-center {
  text-align: center;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-void);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,229,255,0.25);
    gap: 0;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: 0;
  }
  .menu-toggle {
    display: block;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .character-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .character-avatar {
    width: 80px;
    height: 80px;
  }
  .screenshot-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 2.5rem 1rem 2rem;
  }
  .section {
    padding: 2.5rem 1rem;
  }
  .hero h1 {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .page-hero h1 {
    font-size: 0.7rem;
    line-height: 1.5;
  }
  .cta-banner h2 {
    font-size: 0.7rem;
  }
  .section-title {
    font-size: 0.8rem;
  }
  .stats-row {
    gap: 1.5rem;
  }
}
