/* ========== CSS Variables & Reset ========== */
:root {
  /* Light theme surveillance palette */
  --bg: #faf8f5;
  --bg-warm: #f5f0e8;
  --bg-card: #ffffff;
  --bg-header: #1a1d23;
  --text: #2c2c2c;
  --text-soft: #5c5c5c;
  --text-muted: #888888;
  --text-light: #b0b0b0;
  --accent: #c0392b;
  --accent-hover: #a93226;
  --accent-dim: #e8c4c0;
  --border: #e8e2d8;
  --border-light: #f0ebe0;
  --glow: rgba(192, 57, 43, 0.06);
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans SC', sans-serif;
  --font-serif: 'Georgia', 'Noto Serif SC', serif;
  --font-mono: 'Courier New', 'Source Code Pro', monospace;
  --radius: 8px;
  --radius-sm: 4px;
  --max-width: 1100px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  position: relative;
  overflow-x: hidden;
}

/* Subtle monitor glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(192, 57, 43, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 100%, rgba(120, 100, 80, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle scan lines */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(180, 160, 140, 0.03) 0px,
    rgba(180, 160, 140, 0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 9999;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

/* ========== UTILITY CLASSES ========== */
.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;
}
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-soft); }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f0e8d8;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.site-logo:hover { color: #ffffff; }
.logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: rec-pulse 1.2s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  color: #c8c0b0;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; background: rgba(192, 57, 43, 0.2); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

/* Mobile nav */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c8c0b0;
  margin: 4px 0;
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 60px 24px 70px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d23 0%, #252830 50%, #1a1d23 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.hero-home .hero-bg { background-image: url('../img/hero-banner.webp'); }
.hero-story .hero-bg { background-image: url('../img/screenshot-03.webp'); }
.hero-guide .hero-bg { background-image: url('../img/screenshot-02.webp'); }
.hero-characters .hero-bg { background-image: url('../img/screenshot-01.webp'); }
.hero-faq .hero-bg { background-image: url('../img/hero-banner.webp'); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(192, 57, 43, 0.12) 0%, transparent 60%);
  z-index: 1;
}
.site-wrapper {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* REC indicator */
.rec-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.rec-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: rec-pulse 1.2s ease-in-out infinite;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: #f0e8d8;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 8px;
  line-height: 1.25;
}
.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: #a09888;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.hero-subpage .hero-title-main {
  font-size: 2rem;
  font-weight: 700;
}
.hero-subpage { padding: 40px 24px 48px; }
.hero-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-tag {
  padding: 4px 14px;
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #c8b8a8;
}
.hero-tag.highlight {
  background: rgba(192, 57, 43, 0.2);
  border-color: var(--accent);
  color: #e8c0b0;
}
.hero-desc {
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.mono { font-family: var(--font-mono); }

/* CCTV info bar */
.cctv-info-bar {
  display: inline-flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #8a8070;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 16px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  letter-spacing: 1px;
}
.cam-id { color: var(--accent); font-weight: 700; }

.hero-art {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  border: 2px solid rgba(192, 57, 43, 0.3);
}
.hero-art-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.status-bar {
  display: inline-flex;
  gap: 20px;
}
.status-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #8a8070;
  display: flex;
  gap: 6px;
}
.status-item .label { color: #6a6050; }
.status-item .value { color: var(--accent); font-weight: 700; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.3);
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4); }

/* ========== SECTIONS ========== */
.page-section {
  padding: 56px 24px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-light);
}
.page-section:nth-child(even) { background: var(--bg); }

.page-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 16px;
}
.page-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.page-section.text-center h2::after { left: 50%; transform: translateX(-50%); }

.page-section h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ========== CCTV FRAME ========== */
.cctv-frame {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.cctv-frame::before,
.cctv-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--accent-dim);
  border-style: solid;
}
.cctv-frame::before {
  top: 8px;
  left: 8px;
  border-width: 2px 0 0 2px;
}
.cctv-frame::after {
  top: 8px;
  right: 8px;
  border-width: 2px 2px 0 0;
}
.cctv-bottom-corners::before,
.cctv-bottom-corners::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--accent-dim);
  border-style: solid;
}
.cctv-bottom-corners::before {
  bottom: 8px;
  left: 8px;
  border-width: 0 0 2px 2px;
}
.cctv-bottom-corners::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 2px 2px 0;
}

/* ========== CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== CHARACTER CARDS ========== */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.char-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.char-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.char-portrait {
  height: 200px;
  background: linear-gradient(135deg, #e8e0d8 0%, #d5cdc0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.char-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.char-initial {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #c0b0a0;
  font-weight: 700;
}
.char-info { padding: 20px; }
.char-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.char-role {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.char-info p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.65; }

/* ========== SCREENSHOT GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all 0.2s;
  aspect-ratio: 16/9;
}
.gallery-item:hover { border-color: var(--accent); transform: scale(1.02); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 2px;
}

/* ========== INFO TABLE ========== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-table th,
.info-table td {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.info-table th {
  background: var(--bg-warm);
  font-weight: 700;
  color: var(--accent);
  width: 30%;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.info-table td { color: var(--text-soft); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #d44637 100%);
  color: #fff;
  text-align: center;
  padding: 48px 24px;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner h2::after {
  background: rgba(255,255,255,0.4);
  left: 50%;
  transform: translateX(-50%);
}
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover {
  background: #faf8f5;
  color: var(--accent-hover);
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
  margin: 0;
}

/* ========== GUIDE PAGE ========== */
.guide-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  position: relative;
  padding-left: 60px;
}
.guide-step-num {
  position: absolute;
  left: 16px;
  top: 24px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
.guide-step h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 8px; }
.guide-step p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; }

.tip-box {
  background: linear-gradient(135deg, #fef9f0 0%, #fdf5e8 100%);
  border-left: 4px solid #d4a843;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
}
.tip-box strong { color: #b8860b; }

.content-list {
  list-style: disc;
  padding-left: 24px;
  margin: 8px 0 16px;
}
.content-list-num {
  list-style: decimal;
  padding-left: 24px;
  margin: 8px 0 16px;
}
.content-li { color: var(--text-soft); margin-bottom: 5px; line-height: 1.65; font-size: 0.95rem; }
.content-li-md { color: var(--text-soft); margin-bottom: 8px; line-height: 1.65; font-size: 0.95rem; }
.content-li-lg { color: var(--text-soft); margin-bottom: 10px; line-height: 1.65; font-size: 0.95rem; }

.strong-red { color: var(--accent); font-weight: 700; }
.strong-gold { color: #b8860b; font-weight: 700; }
.strong-muted { color: var(--text-muted); font-weight: 700; }

/* ========== STORY PAGE ========== */
.story-quote {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-dim);
}

/* ========== FAQ ========== */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 48px 18px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  color: var(--text);
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 20px 20px;
}
.faq-answer p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* System requirements */
.sys-reqs-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 12px;
}
.sys-reqs-h3:first-of-type { margin-top: 0; }
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.td-highlight { color: var(--accent); font-weight: 700; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-header);
  color: #8a8070;
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  border-top: 3px solid var(--accent);
}
.site-footer p { margin: 0; }

/* ========== SECTION SUBHEADING ========== */
.section-subheading {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 24px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { color: var(--accent); }

/* Review author */
.review-author { font-size: 0.85rem; }

/* ========== PROSE ========== */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.route-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 8px;
}
.route-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ========== RELATIONSHIP TABLE ========== */
.rel-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 16px;
}
.rel-table th,
.rel-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.rel-table th {
  background: var(--bg-warm);
  font-weight: 700;
  color: var(--text);
}
.rel-table td { color: var(--text-soft); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-title-main { font-size: 2.2rem; }
  .hero { padding: 40px 16px 50px; }
  .hero-subpage { padding: 30px 16px 36px; }
  .hero-subpage .hero-title-main { font-size: 1.6rem; }
  .page-section { padding: 40px 16px; }
  .page-section h2 { font-size: 1.6rem; }

  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-header);
    flex-direction: column;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 10px 20px; border-radius: 0; }

  .cards-grid { grid-template-columns: 1fr; }
  .char-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cctv-frame { padding: 20px; }
  .guide-step { padding: 20px 16px 20px 48px; }
  .guide-step-num { left: 8px; top: 20px; }
}

@media (max-width: 480px) {
  .hero-title-main { font-size: 1.7rem; }
  .hero-subtitle { font-size: 0.85rem; letter-spacing: 2px; }
  .hero-art-img { height: 200px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .info-table th,
  .info-table td { padding: 8px 12px; font-size: 0.8rem; }
  body::after { display: none; }
}
