/* === Drive Fairy - Mecha Sci-Fi Theme === */
/* Engine-glow cyans, mechanical-steel silvers, propulsion-flame oranges on light tech bg */

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

/* === CSS Variables === */
:root {
  /* Core palette */
  --cyan-glow: #00e5ff;
  --cyan-deep: #00838f;
  --cyan-dark: #006064;
  --steel: #78909c;
  --steel-light: #b0bec5;
  --steel-pale: #eceff1;
  --steel-dark: #455a64;
  --flame-orange: #ff6d00;
  --flame-bright: #ff9100;
  --flame-soft: #ffab40;
  --bg: #f5f7fa;
  --bg-card: #ffffff;
  --bg-header: #1c2833;
  --bg-footer: #1c2833;
  --text: #263238;
  --text-soft: #546e7a;
  --text-light: #90a4ae;
  --text-on-dark: #eceff1;
  --border: #cfd8dc;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', serif;
  --max-width: 1200px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Subtle tech-grid background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--cyan-deep);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--cyan-glow); }

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

/* === 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: 1000;
  background: var(--bg-header);
  border-bottom: 3px solid var(--cyan-glow);
  box-shadow: 0 2px 16px rgba(0,229,255,0.15);
}

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

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

.header-logo img {
  width: 32px;
  height: 32px;
}

.header-logo span {
  background: linear-gradient(135deg, var(--cyan-glow), var(--flame-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.header-nav a {
  display: block;
  padding: 8px 16px;
  color: var(--steel-light);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--cyan-glow);
  background: rgba(0,229,255,0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--flame-orange), var(--flame-bright));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(255,109,0,0.3);
}

.header-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,109,0,0.5);
}

.header-cta::before {
  content: '⬇';
  font-size: 0.85rem;
}

/* === Hero Section === */
.hero {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #1a2a36 0%, #243447 40%, var(--bg) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0,229,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255,109,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan-glow), var(--flame-orange), var(--cyan-glow));
  opacity: 0.6;
}

.hero-subpage {
  padding: 40px 24px 48px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-cover {
  max-width: 460px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,229,255,0.2), 0 4px 24px rgba(0,0,0,0.3);
  border: 2px solid rgba(0,229,255,0.15);
}

.hero-cover img {
  width: 100%;
  height: auto;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--steel-light);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-subpage-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan-glow);
  margin-bottom: 12px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-meta .tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 20px;
  background: rgba(0,229,255,0.1);
  color: var(--cyan-glow);
  border: 1px solid rgba(0,229,255,0.2);
}

.hero-meta .tag.tag-flame {
  background: rgba(255,109,0,0.1);
  color: var(--flame-bright);
  border-color: rgba(255,109,0,0.2);
}

/* === Section Common === */
.section {
  position: relative;
  z-index: 1;
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* === Content Section (sub-pages) === */
.content-section {
  position: relative;
  z-index: 1;
  padding: 48px 24px 64px;
  max-width: 900px;
  margin: 0 auto;
}

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

.content-section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 8px;
  background: var(--cyan-glow);
  border-radius: 2px;
}

.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--steel-dark);
  margin: 36px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--cyan-glow);
}

.content-section p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.9;
}

/* === Info Cards Grid (index) === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--cyan-glow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin-bottom: 8px;
}

.info-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* === Feature Cards (index) === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--flame-orange);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

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

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

/* === Screenshot Gallery (index) === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-glow);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* === Lightbox === */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  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,229,255,0.15);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--cyan-glow);
}

/* === Reviews (index) === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.review-stars {
  color: var(--flame-bright);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.review-text {
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

/* === Rating Summary (index) === */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.rating-stat {
  text-align: center;
}

.rating-stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-glow), var(--flame-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-stat-label {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* === Tag Pills === */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.tag-pill {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 20px;
  background: var(--steel-pale);
  color: var(--steel-dark);
  border: 1px solid var(--border);
}

/* === CTA Banner (index only) === */
.cta-banner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 24px;
  background: linear-gradient(135deg, #1a2a36, #243447);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,229,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(255,109,0,0.08) 0%, transparent 50%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--steel-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--flame-orange), var(--flame-bright));
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 28px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,109,0,0.4);
}

.cta-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,109,0,0.6);
}

.cta-btn::before {
  content: '⬇';
  font-size: 1rem;
}

/* === Guide Steps (guide.html) === */
.guide-steps {
  margin-top: 32px;
}

.guide-step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--cyan-glow);
}

.guide-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-glow), var(--cyan-deep));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

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

.guide-step p {
  color: var(--text-soft);
  line-height: 1.8;
}

.guide-intro {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

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

.route-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin: 32px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--flame-orange);
}

/* === Tip Box === */
.tip-box {
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
}

.tip-box strong {
  color: var(--cyan-deep);
}

.tip-box p {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.tip-box-flame {
  background: rgba(255,109,0,0.05);
  border: 1px solid rgba(255,109,0,0.2);
}

.tip-box-flame strong {
  color: var(--flame-orange);
}

/* === Chapter Cards (story.html) === */
.chapter-list {
  margin-top: 32px;
}

.chapter-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--cyan-glow);
  transition: border-color 0.3s;
}

.chapter-card:nth-child(even) {
  border-left-color: var(--flame-orange);
}

.chapter-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin-bottom: 6px;
}

.chapter-card .chapter-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.chapter-card p {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.8;
}

.chapter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.chapter-meta-item {
  font-size: 0.82rem;
  color: var(--text-light);
}

.chapter-meta-item strong {
  color: var(--steel-dark);
}

.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--steel-dark);
  margin: 36px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--cyan-glow);
}

/* === Character Cards (characters.html) === */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.char-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.char-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a2a36, #243447);
}

.char-card-body {
  padding: 20px;
  border-top: 3px solid var(--cyan-glow);
}

.char-card:nth-child(even) .char-card-body {
  border-top-color: var(--flame-orange);
}

.char-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin-bottom: 4px;
}

.char-card .char-role {
  font-size: 0.85rem;
  color: var(--cyan-deep);
  font-weight: 600;
  margin-bottom: 10px;
}

.char-card .char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.char-card .char-trait {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.78rem;
  border-radius: 12px;
  background: var(--steel-pale);
  color: var(--steel-dark);
}

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

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

/* === Relationship Overview === */
.relation-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.relation-box h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin-bottom: 16px;
  text-align: center;
}

.relation-box p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: center;
}

/* === FAQ Accordion === */
.faq-list {
  margin-top: 32px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--steel-dark);
  transition: background 0.2s;
  user-select: none;
}

.faq-question:hover {
  background: rgba(0,229,255,0.03);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--cyan-deep);
  transition: transform 0.3s;
  font-weight: 300;
}

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

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* === System Requirements Table === */
.sys-reqs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sys-reqs-table th,
.sys-reqs-table td {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.sys-reqs-table th {
  background: var(--steel-pale);
  font-weight: 600;
  color: var(--steel-dark);
  font-size: 0.9rem;
}

.sys-reqs-table td {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.sys-reqs-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--steel-dark);
  margin: 32px 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--cyan-glow);
}

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

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

/* === Content Lists (bullet-proof against inline) === */
.content-list {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0 20px;
  color: var(--text);
}

.content-list-num {
  list-style: decimal;
  padding-left: 24px;
  margin: 12px 0 20px;
  color: var(--text);
}

.content-li {
  margin-bottom: 5px;
  color: var(--text-soft);
  line-height: 1.8;
}

.content-li-sm { margin-bottom: 4px; color: var(--text-soft); line-height: 1.7; }
.content-li-md { margin-bottom: 8px; color: var(--text-soft); line-height: 1.9; }
.content-li-lg { margin-bottom: 10px; color: var(--text-soft); line-height: 1.9; }

/* === Strong accent colors === */
.strong-cyan { color: var(--cyan-deep); }
.strong-orange { color: var(--flame-orange); }
.strong-gold { color: #f9a825; }
.strong-muted { color: var(--steel-dark); }
.strong-navy { color: var(--cyan-dark); }

/* === Table highlight === */
.td-highlight {
  color: var(--flame-orange);
  font-weight: 700;
}

/* === Footer === */
.site-footer {
  background: var(--bg-footer);
  text-align: center;
  padding: 24px;
  border-top: 3px solid var(--cyan-glow);
}

.site-footer p {
  color: var(--steel-light);
  font-size: 0.88rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
  }

  .header-nav {
    gap: 0;
  }

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

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

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

  .hero-subpage {
    padding: 32px 16px 36px;
  }

  .hero-cover {
    max-width: 100%;
  }

  .hero-subpage-title {
    font-size: 1.5rem;
  }

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

  .rating-summary {
    gap: 24px;
  }

  .info-grid,
  .features-grid,
  .characters-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 16px;
  }

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

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

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

@media (max-width: 480px) {
  .header-logo {
    font-size: 1rem;
  }

  .header-nav a {
    padding: 4px 8px;
    font-size: 0.75rem;
  }

  .header-cta {
    padding: 5px 10px;
    font-size: 0.72rem;
  }

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

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