/* ===== 魔法少女天穹法妮雅 — Celestial Magical Girl Theme ===== */
/* Starry-sky sapphires, transformation-sequence pinks, magic-circle geometry */
/* Light celestial background — sky-high magical girl aesthetic */

:root {
  /* Sapphire blues */
  --sapphire-deep: #1a3a6b;
  --sapphire-mid: #2d5aa0;
  --sapphire-light: #4a7fd4;
  --sapphire-pale: #8bb3f0;

  /* Transformation pinks */
  --pink-deep: #c94a7a;
  --pink-mid: #e86b9b;
  --pink-light: #f5a0c4;
  --pink-pale: #fce4ee;

  /* Celestial accents */
  --star-gold: #e8b830;
  --star-gold-light: #f5d878;
  --star-white: #fefdf8;

  /* Backgrounds */
  --bg-celestial: #eef4ff;
  --bg-page: #f5f8ff;
  --bg-card: #ffffff;
  --bg-card-alt: #f8faff;

  /* Text */
  --text-primary: #162040;
  --text-secondary: #3a4a6b;
  --text-muted: #6b7da0;
  --text-on-dark: #eef3ff;

  /* Borders & Shadows */
  --border-subtle: #d8e2f4;
  --shadow-card: 0 2px 12px rgba(26, 58, 107, 0.08);
  --shadow-elevated: 0 4px 24px rgba(26, 58, 107, 0.12);
  --shadow-pink: 0 2px 16px rgba(200, 74, 122, 0.12);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #2d5aa0 0%, #1a3a6b 40%, #4a3a6b 100%);
  --gradient-btn: linear-gradient(135deg, #e86b9b 0%, #c94a7a 100%);
  --gradient-btn-hover: linear-gradient(135deg, #f080b0 0%, #d85a8a 100%);
  --gradient-magic: linear-gradient(135deg, #4a7fd4 0%, #8bb3f0 100%);
  --gradient-card-accent: linear-gradient(180deg, var(--pink-pale) 0%, transparent 60%);

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Fonts */
  --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, sans-serif;
  --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.7;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(139, 179, 240, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(245, 160, 196, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(245, 216, 120, 0.06) 0%, transparent 60%);
  background-attachment: fixed;
}

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

a:hover {
  color: var(--pink-mid);
}

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

ul {
  list-style: none;
}

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 8px rgba(26, 58, 107, 0.06);
  height: var(--header-height);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sapphire-deep);
}

.header-logo .logo-star {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--gradient-magic);
  border-radius: 50%;
  position: relative;
}

.header-logo .logo-star::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #fff;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--sapphire-mid);
  background: rgba(45, 90, 160, 0.06);
}

.main-nav a.nav-cta {
  background: var(--gradient-btn);
  color: #fff;
  padding: 8px 20px;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(200, 74, 122, 0.25);
}

.main-nav a.nav-cta:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 4px 16px rgba(200, 74, 122, 0.35);
  transform: translateY(-1px);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--sapphire-mid);
  cursor: pointer;
  padding: 4px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 168, 120, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(139, 179, 240, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Star decorations */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 25% 25%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 55% 30%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 85% 35%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 15% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 30% 55%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 60% 65%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 80% 55%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 45% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

/* Page-specific hero backgrounds */
.hero-home .hero-bg {
  background-image: url('../img/header.webp');
}

.hero-guide .hero-bg {
  background-image: url('../img/screenshot-03.webp');
}

.hero-characters .hero-bg {
  background-image: url('../img/screenshot-04.webp');
}

.hero-story .hero-bg {
  background-image: url('../img/screenshot-01.webp');
}

.hero-faq .hero-bg {
  background-image: url('../img/header.webp');
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-text {
  max-width: 680px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(200, 74, 122, 0.35);
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 6px 28px rgba(200, 74, 122, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

/* ===== Section Common ===== */
.section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sapphire-deep);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--gradient-magic);
  border-radius: 2px;
}

.section-header .section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Magic circle divider */
.magic-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}

.magic-divider::before,
.magic-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border-subtle);
}

.magic-divider .star-icon {
  font-size: 1.2rem;
  color: var(--star-gold);
}

/* ===== Intro / About ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.about-content p {
  margin-bottom: 16px;
}

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-magic);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-size: 1.6rem;
}

.feature-icon.blue {
  background: rgba(45, 90, 160, 0.1);
  color: var(--sapphire-mid);
}

.feature-icon.pink {
  background: rgba(200, 74, 122, 0.1);
  color: var(--pink-deep);
}

.feature-icon.gold {
  background: rgba(232, 184, 48, 0.1);
  color: var(--star-gold);
}

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

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

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

.gallery-grid a {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  position: relative;
}

.gallery-grid a::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-grid a:hover::after {
  opacity: 1;
}

.gallery-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 3rem;
  color: var(--pink-pale);
  font-family: serif;
  line-height: 1;
}

.review-stars {
  color: var(--star-gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

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

.review-source {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Content Card (guide/characters/story) ===== */
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.content-card h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sapphire-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-card h2 .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
}

.content-card h2 .card-icon.blue {
  background: rgba(45, 90, 160, 0.1);
  color: var(--sapphire-mid);
}

.content-card h2 .card-icon.pink {
  background: rgba(200, 74, 122, 0.1);
  color: var(--pink-deep);
}

.content-card h2 .card-icon.gold {
  background: rgba(232, 184, 48, 0.1);
  color: var(--star-gold);
}

.content-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sapphire-deep);
  margin: 20px 0 10px;
}

.content-card p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}

.content-card ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-card ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ===== Character Cards ===== */
.char-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.char-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

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

.char-card .char-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.char-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-magic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
}

.char-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sapphire-deep);
  margin: 0;
}

.char-role {
  font-size: 0.8rem;
  color: var(--pink-mid);
  font-weight: 500;
}

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

/* ===== Guide Tips ===== */
.tip-box {
  background: var(--bg-card-alt);
  border-left: 4px solid var(--sapphire-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 16px 0;
}

.tip-box.important {
  border-left-color: var(--pink-mid);
  background: var(--pink-pale);
}

.tip-box p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== Info Table ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.93rem;
}

.info-table th {
  width: 140px;
  color: var(--text-muted);
  font-weight: 500;
  background: var(--bg-card-alt);
}

.info-table td {
  color: var(--text-secondary);
}

/* ===== FAQ Accordion ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-question:hover {
  color: var(--sapphire-mid);
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 16px;
  font-size: 1.2rem;
  color: var(--sapphire-light);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 600px;
}

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

/* ===== CTA Section ===== */
.cta-section {
  background: var(--gradient-hero);
  text-align: center;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(139, 179, 240, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(245, 160, 196, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--sapphire-deep);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-sm);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ===== Page Hero (subpages) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
}

.page-hero .hero-bg {
  opacity: 0.25;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
}

.page-hero .hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--sapphire-mid);
}

.breadcrumb span {
  margin: 0 6px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    gap: 4px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero {
    min-height: 380px;
  }

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

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

  .section {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .page-hero {
    min-height: 200px;
  }

  .content-card {
    padding: 20px;
  }

  .info-table th {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-tag {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  .hero-cta {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

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