/* ============================================================
   隔壁的女主播 — Neighbor Streamer Cozy Theme
   Stream-alert reds + cozy-apartment beiges + webcam-frame motifs
   Light warm background, intimate next-door digital aesthetic
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --accent: #e63946;
  --accent-hover: #c1121f;
  --accent-light: #fce4e4;
  --accent-glow: rgba(230, 57, 70, 0.25);

  --bg: #faf6f0;
  --bg-card: #fffdf9;
  --bg-alt: #f5efe5;

  --bg-header: #2d1a1c;
  --bg-footer: #2d1a1c;

  --text: #3d3028;
  --text-light: #8a7e72;
  --text-muted: #b0a69a;
  --text-heading: #2d1a1c;
  --text-on-dark: #f5efe5;

  --border: #e8e0d4;
  --border-light: #f0ebe0;
  --border-webcam: #c4bbb0;

  --tag-bg-red: #fef0f0;
  --tag-text-red: #c1121f;
  --tag-bg-warm: #fef8f3;
  --tag-text-warm: #c97b5b;
  --tag-bg-gold: #fefae6;
  --tag-text-gold: #9b870c;

  --shadow-sm: 0 1px 3px rgba(45, 26, 28, 0.06);
  --shadow-md: 0 4px 16px rgba(45, 26, 28, 0.08);
  --shadow-lg: 0 8px 32px rgba(45, 26, 28, 0.10);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --font-heading: 'Noto Serif SC', 'STSong', 'Songti SC', 'SimSun', 'KaiTi', serif;
  --font-body: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;

  --max-width: 1100px;
  --header-height: 64px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

/* Ambient cozy room glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 20%, rgba(230, 57, 70, 0.04), transparent),
    radial-gradient(ellipse 500px 350px at 70% 60%, rgba(201, 123, 91, 0.04), transparent),
    radial-gradient(ellipse 400px 300px at 50% 40%, rgba(201, 160, 48, 0.03), transparent);
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-heading); line-height: 1.3; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 0.8rem; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

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

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-light { color: var(--text-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.pb-0 { padding-bottom: 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header .section-subtitle { color: var(--text-light); font-size: 1rem; }

/* --- Header --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 3px solid var(--accent);
  height: var(--header-height);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d44a5a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

/* Desktop nav */
nav { display: flex; align-items: center; gap: 0.25rem; }
nav a {
  color: var(--text-on-dark);
  opacity: 0.8;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none;
}
nav a:hover, nav a.active { opacity: 1; background: rgba(255,255,255,0.1); }

/* Nav CTA — LIVE badge style */
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  opacity: 1 !important;
  border-radius: 20px !important;
  padding: 0.4rem 1.2rem !important;
  font-weight: 600;
  position: relative;
  margin-left: 0.5rem;
}
.nav-cta::before {
  content: '● LIVE';
  position: absolute;
  top: -8px;
  right: -4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.08); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Main Content --- */
main {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  overflow: hidden;
  margin: 0 -1.5rem;
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(170deg, #faf6f0 0%, #f5ede0 40%, #faf3ed 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 500px 300px at 25% 60%, rgba(230, 57, 70, 0.07), transparent),
    radial-gradient(ellipse 400px 250px at 75% 30%, rgba(201, 123, 91, 0.05), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2d1a1c 0%, var(--accent) 70%, #c97b5b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.tag-red { background: var(--tag-bg-red); color: var(--tag-text-red); }
.tag-warm { background: var(--tag-bg-warm); color: var(--tag-text-warm); }
.tag-gold { background: var(--tag-bg-gold); color: var(--tag-text-gold); }

.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent-light);
  color: var(--accent-hover);
}

.hero-visual {
  position: relative;
}

/* Webcam frame visual */
.webcam-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--border-webcam);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #f5ede0 0%, #eee5d5 30%, #f5ede0 60%, #ede0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.webcam-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 12px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
  z-index: 2;
  animation: livePulse 1.8s ease-in-out infinite;
}

.webcam-frame::after {
  content: '● LIVE';
  position: absolute;
  top: 8px;
  right: 28px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.webcam-frame .frame-placeholder {
  font-size: 5rem;
  opacity: 0.6;
}

/* --- Page Hero (sub-pages) --- */
.page-hero {
  position: relative;
  overflow: hidden;
  margin: 0 -1.5rem;
  padding: 3rem 1.5rem;
  background: linear-gradient(170deg, #faf6f0 0%, #f5ede0 100%);
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 400px 200px at 50% 70%, rgba(230, 57, 70, 0.05), transparent);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, #2d1a1c, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .hero-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--text-light);
}
.breadcrumbs .sep {
  margin: 0 0.4rem;
  color: var(--border);
}

/* --- Sections --- */
section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-alt);
  margin: 0 -1.5rem;
  padding: 3rem 1.5rem;
}
.section-alt > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* --- Info Cards Grid --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  transition: all 0.2s;
}
.info-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.info-card .info-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.info-card .info-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.info-card .info-value {
  font-weight: 600;
  color: var(--text-heading);
  font-size: 1.05rem;
}

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
/* Webcam-frame style left border accent */
.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card:hover::before {
  background: var(--accent-hover);
}
.feature-card .feature-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

/* --- Character Cards --- */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.char-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s;
}
.char-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.char-card-header {
  background: linear-gradient(135deg, #2d1a1c, #4a2628);
  padding: 1.2rem;
  text-align: center;
  position: relative;
}
.char-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.char-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 0.6rem;
  border: 3px solid rgba(255,255,255,0.15);
}
.char-card-header h3 {
  color: var(--text-on-dark);
  margin-bottom: 0.15rem;
}
.char-card-header .char-role {
  font-size: 0.85rem;
  color: rgba(245, 239, 229, 0.6);
}
.char-card-body {
  padding: 1.2rem;
}
.char-card-body p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.char-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* --- Story Blocks --- */
.story-block {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent);
}
.story-block h3 {
  margin-bottom: 0.4rem;
}
.story-block .story-chapter {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}
.story-block p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Guide Steps --- */
.guide-steps {
  display: grid;
  gap: 1.2rem;
}

.guide-step {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.2s;
}
.guide-step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.guide-step .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--accent-glow);
}
.guide-step .step-content h4 {
  margin-bottom: 0.3rem;
}
.guide-step .step-content p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* --- FAQ Accordion --- */
.faq-list { display: grid; gap: 0.6rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.faq-question .faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.3rem 1rem;
}
.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* --- Gallery / Screenshots --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border-light);
  transition: all 0.25s;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
}

.gallery-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.5;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg-card));
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

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

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
}
.lightbox-close:hover { opacity: 1; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #2d1a1c 0%, #4a2628 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 300px 200px at 30% 50%, rgba(230, 57, 70, 0.15), transparent),
    radial-gradient(ellipse 200px 150px at 70% 40%, rgba(201, 123, 91, 0.1), transparent);
}

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

.cta-banner h2 {
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}
.cta-banner p {
  color: rgba(245, 239, 229, 0.7);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.cta-banner .btn-primary {
  box-shadow: 0 4px 24px rgba(230, 57, 70, 0.4);
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
}

.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* --- Review Block --- */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.review-card .review-quote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
  border-left: 3px solid var(--accent-light);
}
.review-card .review-author {
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.9rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* --- Tip Box --- */
.tip-box {
  background: var(--accent-light);
  border: 1px solid #f5c6c6;
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  margin: 1.2rem 0;
}
.tip-box p { margin-bottom: 0; font-size: 0.93rem; }
.tip-box strong { color: var(--accent); }

/* --- Role Table --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.info-table th, .info-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}
.info-table th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--text-heading);
  white-space: nowrap;
}
.info-table td { color: var(--text-light); }

/* --- Ending Cards --- */
.ending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.ending-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  text-align: center;
  transition: all 0.2s;
}
.ending-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.ending-card .ending-type {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}
.ending-card h4 { margin-bottom: 0.3rem; }
.ending-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* --- Stream Alert Divider --- */
.stream-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.stream-divider::before,
.stream-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  max-width: 120px;
}

/* --- Blockquote --- */
blockquote {
  border-left: 4px solid var(--accent);
  background: var(--accent-light);
  padding: 1rem 1.3rem;
  margin: 1.2rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text);
}
blockquote p { margin-bottom: 0; }

/* --- Footer --- */
footer {
  background: var(--bg-footer);
  color: rgba(245, 239, 229, 0.6);
  text-align: center;
  padding: 1.8rem 1.5rem;
  font-size: 0.88rem;
  margin-top: 3rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-text h1 { font-size: 2rem; }
  .hero-tags { justify-content: center; }
  .webcam-frame { max-width: 400px; margin: 0 auto; }

  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-header);
    flex-direction: column;
    padding: 0.8rem 1.5rem;
    gap: 0.3rem;
    border-bottom: 3px solid var(--accent);
  }
  nav.open { display: flex; }
  nav a { width: 100%; padding: 0.6rem 0.9rem; }
  .nav-cta { margin-left: 0; text-align: center; }

  .feature-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .char-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { gap: 1.2rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero { padding: 2.5rem 1rem 2rem; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 0.8rem; flex-direction: column; }
  .cta-banner { padding: 1.8rem 1.2rem; }
  .btn { padding: 0.6rem 1.4rem; }
}
