/* ============================================
   THE OVERDUE REPORT — Official Stylesheet
   "Because the news doesn't wait. But I do."
   ============================================ */

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

:root {
  /* Patriotic Palette */
  --deep-navy: #0a1628;
  --navy: #1a2744;
  --royal-blue: #1e3a6e;
  --bright-blue: #2657a6;
  --flag-red: #bf0a30;
  --dark-red: #8b0000;
  --crimson: #dc143c;
  --white: #ffffff;
  --off-white: #f0f2f5;
  --cream: #fafafa;
  --gold: #c9a84c;
  --bright-gold: #ffd700;
  --silver: #c0c0c0;
  --text-dark: #1a1a2e;
  --text-light: #e8e8e8;
  --text-muted: #8892a4;

  /* Typography */
  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Oswald', 'Impact', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-pad: 80px;
  --container-max: 1200px;
}

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

body {
  font-family: var(--font-body);
  background: var(--deep-navy);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* --- Top Breaking Banner --- */
.breaking-banner {
  background: var(--flag-red);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulse-bg 3s ease-in-out infinite;
}

.breaking-banner span {
  font-weight: 700;
  margin-right: 8px;
}

@keyframes pulse-bg {
  0%, 100% { background: var(--flag-red); }
  50% { background: var(--dark-red); }
}

/* --- Header / Navigation --- */
.site-header {
  background: linear-gradient(180deg, var(--deep-navy) 0%, var(--navy) 100%);
  border-bottom: 3px solid var(--flag-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.site-logo-text {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.site-logo-text .accent {
  color: var(--flag-red);
}

.site-logo-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--flag-red);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 80%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* --- News Ticker --- */
.news-ticker {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.ticker-label {
  background: var(--flag-red);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.ticker-label::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 15px solid var(--flag-red);
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-content {
  display: flex;
  animation: ticker-scroll 60s linear infinite;
  white-space: nowrap;
  padding-left: 30px;
}

.ticker-item {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-item::before {
  content: '★';
  color: var(--gold);
  font-size: 0.7rem;
}

.ticker-item .ticker-alert {
  color: var(--flag-red);
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-accent);
  letter-spacing: 1px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 40%, var(--royal-blue) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(191,10,48,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(38,87,166,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--flag-red), var(--white), var(--bright-blue), var(--white), var(--flag-red));
}

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

.hero-logo {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo-placeholder {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-headline);
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 .the {
  font-size: 1.5rem;
  display: block;
  font-family: var(--font-accent);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--flag-red);
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
}

.btn-primary {
  background: var(--flag-red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(191,10,48,0.4);
}

.btn-primary:hover {
  background: var(--crimson);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191,10,48,0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--deep-navy);
  transform: translateY(-2px);
}

.btn-youtube {
  background: #ff0000;
  color: var(--white);
}

.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* --- Section Styles --- */
.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--deep-navy);
}

.section-darker {
  background: linear-gradient(180deg, #060e1a 0%, var(--deep-navy) 100%);
}

.section-alt {
  background: var(--navy);
}

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

.section-header h2 {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.section-header .section-rule {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--flag-red), var(--gold));
  margin: 16px auto;
  border: none;
}

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

/* --- Featured Episode --- */
.featured-episode {
  background: var(--navy);
  border: 2px solid var(--royal-blue);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.featured-badge {
  background: var(--flag-red);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  text-align: center;
}

.featured-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.featured-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.featured-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: var(--text-muted);
}

.featured-video-placeholder .play-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  color: var(--flag-red);
}

.featured-info {
  padding: 24px;
}

.featured-info h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.featured-info .episode-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.featured-info p {
  color: var(--silver);
  line-height: 1.7;
}

/* --- Headlines Grid --- */
.headlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.headline-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.headline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--flag-red);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: top;
}

.headline-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal-blue);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.headline-card:hover::before {
  transform: scaleY(1);
}

.headline-category {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--flag-red);
  margin-bottom: 10px;
}

.headline-card h3 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.headline-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- Episodes Grid --- */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.episode-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  border-color: var(--royal-blue);
}

.episode-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
}

.episode-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.episode-thumb-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--flag-red);
}

.episode-number {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--flag-red);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.episode-body {
  padding: 20px;
}

.episode-body h3 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.episode-body .episode-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.episode-body p {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- About Page --- */
.about-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 50%, var(--royal-blue) 100%);
  position: relative;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--flag-red), var(--white), var(--bright-blue));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h3 {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-sidebar {
  background: var(--navy);
  border: 2px solid var(--royal-blue);
  border-radius: 8px;
  padding: 30px;
}

.about-sidebar h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--royal-blue);
}

.fact-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fact-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--flag-red);
  display: block;
  margin-bottom: 4px;
}

.fact-value {
  color: var(--white);
  font-size: 0.95rem;
}

/* --- Staff Section --- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.staff-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.staff-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--royal-blue), var(--navy));
}

.staff-card h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.staff-title {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--flag-red);
  margin-bottom: 12px;
}

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

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.contact-form {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--deep-navy);
  border: 1px solid var(--royal-blue);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 24px;
}

.info-block h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.info-block p {
  color: var(--silver);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* --- Quote/Callout Box --- */
.callout {
  background: linear-gradient(135deg, var(--navy), var(--royal-blue));
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 30px 36px;
  margin: 40px 0;
}

.callout blockquote {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.5;
}

.callout cite {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* --- Footer --- */
.site-footer {
  background: #050c18;
  border-top: 3px solid var(--flag-red);
  padding: 50px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.social-icon:hover {
  background: var(--flag-red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-style: italic;
  text-align: center;
  max-width: 600px;
}

/* --- Animated Stars Background (hero) --- */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--white);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.8rem; }
  .hero h1 .the { font-size: 1.1rem; }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .headlines-grid { grid-template-columns: 1fr; }
  .episodes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    flex-direction: column;
    border-top: 2px solid var(--flag-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 50px 0; }
  .header-inner { padding: 10px 16px; }
}

/* --- Page Header (for inner pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 50%, var(--royal-blue) 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--flag-red);
}

.page-header h1 {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.page-header p {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Loading animation --- */
.loading-dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deep-navy);
}

::-webkit-scrollbar-thumb {
  background: var(--royal-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bright-blue);
}
