/* itsnotcominghome.co.uk — The Pomeranian Inn, Benidorm */
/* Football first. Benidorm as location. Politics as undertone. */

:root {
  /* The Pomeranian Inn Palette */
  --red: #CF0A2C;
  --dark-red: #9B0820;
  --uj-blue: #003087;        /* deep blue */
  --neon-blue: #00BFFF;      /* Benidorm strip neon blue */
  --neon-purple: #9B59B6;    /* Bar neon purple */
  --neon-pink: #FF1493;      /* Strip neon pink accent */
  --amber-bar: #FF8C00;      /* Warm bar lighting amber */
  --gold: #FFD700;
  --white: #FFFFFF;
  --off-white: #F5EFE0;
  --green: #00A651;

  /* Dark backgrounds — NOT flat black, warm bar dark */
  --bg-main: #0D0B15;        /* Very dark purple-black — bar at night */
  --bg-section: #110E1E;     /* Slightly lighter dark purple */
  --bg-alt: #0A0A12;         /* Alternate section */
  --bg-card: #1A1630;        /* Card background — dark blue-purple */
  --bg-card-warm: #1E1510;   /* Warm card — amber-tinted dark */
  --border: #2A2550;         /* Purple-tinted border */
  --border-warm: #3A2A1A;    /* Warm amber border */

  /* Neon glow colours */
  --glow-red: rgba(207, 10, 44, 0.4);
  --glow-blue: rgba(0, 191, 255, 0.35);
  --glow-purple: rgba(155, 89, 182, 0.3);
  --glow-amber: rgba(255, 140, 0, 0.3);
  --glow-gold: rgba(255, 215, 0, 0.25);

  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-display: 'Arial Black', 'Impact', sans-serif;
  --font-mono: 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  /* Subtle neon strip texture */
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(0, 48, 135, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(207, 10, 44, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(155, 89, 182, 0.06) 0%, transparent 60%);
}

/* SATIRE BAR */
.satire-bar {
  background: linear-gradient(90deg, var(--uj-blue), #002060, var(--uj-blue));
  color: var(--white);
  text-align: center;
  padding: 6px 20px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
}

/* TICKER */
.ticker-wrapper {
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 36px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(207, 10, 44, 0.3);
}

.ticker-label {
  background: var(--red);
  color: var(--white);
  padding: 0 14px;
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.ticker-content {
  display: flex;
  animation: ticker-scroll 80s linear infinite;
  white-space: nowrap;
}

.ticker-content span {
  padding: 0 40px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: #CCCCCC;
  letter-spacing: 0.3px;
}

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

/* NAV */
.main-nav {
  background: rgba(10, 8, 20, 0.97);
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 36px;
  z-index: 99;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 48, 135, 0.3);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-flag { font-size: 18px; }
.nav-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}
.nav-loc {
  background: linear-gradient(135deg, var(--uj-blue), #0050C8);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.2);
}
.nav-links { display: flex; gap: 4px; flex-wrap: wrap; }
.nav-link {
  color: #AAAAAA;
  text-decoration: none;
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 0.2s;
  text-transform: uppercase;
}
.nav-link:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 12px var(--glow-red);
}
.nav-live {
  background: var(--red);
  color: var(--white) !important;
  animation: pulse-nav 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--glow-red);
}
@keyframes pulse-nav { 0%,100%{opacity:1; box-shadow: 0 0 10px var(--glow-red);} 50%{opacity:0.8; box-shadow: 0 0 20px var(--glow-red);} }

/* HERO */
.hero-section {
  background:
    linear-gradient(180deg,
      rgba(0, 10, 40, 0.55) 0%,
      rgba(10, 8, 20, 0.72) 50%,
      rgba(10, 8, 20, 0.92) 100%
    ),
    url('hero-bg.jpg') center 30% / cover no-repeat;
  padding: 80px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}

/* Neon strip glow lines */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--uj-blue), var(--neon-blue), var(--red), var(--neon-blue), var(--uj-blue));
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.hero-benidorm-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  background: rgba(0, 191, 255, 0.08);
  border: 1px solid rgba(0, 191, 255, 0.35);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.15), inset 0 0 15px rgba(0, 191, 255, 0.05);
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 110px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow:
    0 0 40px rgba(255, 255, 255, 0.15),
    0 0 80px rgba(0, 48, 135, 0.3),
    3px 3px 0 rgba(0, 48, 135, 0.5);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(22px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 0 30px var(--glow-red), 0 0 60px rgba(207, 10, 44, 0.2);
}

.hero-intro {
  font-size: 18px;
  color: #CCCCCC;
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.6;
  font-style: italic;
}

.hero-dave-quote {
  background: rgba(207, 10, 44, 0.08);
  border-left: 4px solid var(--red);
  border-right: 4px solid var(--red);
  padding: 14px 28px;
  font-size: 16px;
  color: var(--white);
  font-style: italic;
  max-width: 580px;
  margin: 0 auto 10px;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(207, 10, 44, 0.1);
}

.hero-undertone {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #666666;
  max-width: 500px;
  margin: 0 auto 40px;
  font-style: italic;
}

/* Hero Counters */
.hero-counters {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.counter-block {
  background: rgba(26, 22, 48, 0.8);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 22px 28px;
  min-width: 190px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
}

.counter-countdown {
  border-top-color: var(--neon-blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 191, 255, 0.1);
}
.counter-others {
  border-top-color: #555555;
}

.counter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.counter-value {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.counter-sub {
  font-size: 13px;
  color: #AAAAAA;
  font-family: var(--font-mono);
}

/* Scoreboard */
.hero-scoreboard {
  background: rgba(10, 8, 20, 0.8);
  border: 1px solid var(--border);
  max-width: 480px;
  margin: 0 auto 36px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 48, 135, 0.2);
}

.scoreboard-title {
  background: rgba(0, 48, 135, 0.4);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--neon-blue);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.scoreboard-grid { padding: 8px 0; }

.score-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 20px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.score-item:last-child { border-bottom: none; }
.score-num { font-family: var(--font-display); font-weight: 900; color: var(--gold); font-size: 18px; text-shadow: 0 0 10px var(--glow-gold); }
.score-england {
  background: rgba(207, 10, 44, 0.1);
  border-top: 1px solid rgba(207,10,44,0.3) !important;
  box-shadow: inset 0 0 20px rgba(207, 10, 44, 0.05);
}
.score-zero { color: var(--red) !important; text-shadow: 0 0 10px var(--glow-red); }

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  color: var(--white);
  text-decoration: none;
  padding: 16px 40px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px var(--glow-red);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #E8102F, var(--red));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-red);
}

/* SECTIONS */
.site-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

/* Alternating section backgrounds — warm bar lighting feel */
.site-section:nth-child(odd) {
  background:
    linear-gradient(180deg, var(--bg-section) 0%, var(--bg-main) 100%);
}

.site-section:nth-child(even) {
  background:
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-section) 100%);
}

/* Subtle neon accent on section top */
.site-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 191, 255, 0.15) 30%, rgba(155, 89, 182, 0.15) 70%, transparent 100%);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  padding: 5px 14px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-radius: 2px;
  box-shadow: 0 2px 10px var(--glow-red);
}

.site-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 50px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 10px;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,255,255,0.08);
}

.section-sub {
  font-size: 16px;
  color: #AAAAAA;
  max-width: 700px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* DISPATCH */
.dispatch-intro-block {
  background: rgba(0, 48, 135, 0.12);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-left: 4px solid var(--neon-blue);
  padding: 22px 26px;
  margin-bottom: 36px;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.05), inset 0 0 30px rgba(0, 48, 135, 0.05);
}

.dispatch-intro-block p { color: #CCCCCC; margin-bottom: 12px; line-height: 1.8; }
.dispatch-intro-block p:last-child { margin-bottom: 0; }

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}

.dispatch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--neon-blue);
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 191, 255, 0.05);
  transition: box-shadow 0.2s;
}

.dispatch-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 191, 255, 0.1);
}

.dispatch-highlight {
  border-top-color: var(--gold);
  background: rgba(255, 215, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 215, 0, 0.05);
}

.dispatch-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon-blue);
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

.dispatch-source {
  font-size: 13px;
  color: #888888;
  font-style: italic;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.dispatch-quote {
  font-size: 15px;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
}

.dispatch-verdict {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--amber-bar);
  background: rgba(255, 140, 0, 0.08);
  padding: 8px 12px;
  border-radius: 3px;
  line-height: 1.5;
  border: 1px solid rgba(255, 140, 0, 0.15);
}

.timeline-section { margin-top: 48px; }

.timeline-section h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.tl-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 4px;
}

.tl-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 0 0 8px var(--glow-red);
}

.tl-item p { font-size: 14px; color: #CCCCCC; line-height: 1.6; }

/* TUCHEL */
.tuchel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 36px;
}

@media (max-width: 700px) { .tuchel-grid { grid-template-columns: 1fr; } }

.tuchel-profile, .tuchel-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tuchel-profile h3, .tuchel-group h3 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table td, .data-table th { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.data-table td:first-child { color: #888888; font-family: var(--font-mono); font-size: 12px; width: 40%; }
.data-table td:last-child { color: var(--white); }
.data-table th { color: var(--neon-blue); font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; text-shadow: 0 0 8px rgba(0, 191, 255, 0.4); }
.data-table tr:last-child td { border-bottom: none; }
.table-header { background: rgba(0, 48, 135, 0.1); }
.verdict-row td { color: var(--amber-bar) !important; font-family: var(--font-mono) !important; font-size: 12px !important; font-style: italic; background: rgba(255, 140, 0, 0.06); }

.squad-section { margin-bottom: 36px; }
.squad-section h3 { font-family: var(--font-display); font-size: 19px; color: var(--white); margin-bottom: 18px; text-transform: uppercase; }

.squad-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }

.squad-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 18px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s;
}

.squad-card:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(207, 10, 44, 0.1); }

.card-hope { border-top-color: var(--gold); }
.card-hope:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 15px var(--glow-gold); }
.card-quality { border-top-color: var(--red); }
.card-goals { border-top-color: var(--amber-bar); }
.card-wild { border-top-color: var(--neon-blue); }
.card-wild:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 15px var(--glow-blue); }

.squad-name { font-family: var(--font-display); font-size: 15px; font-weight: 900; color: var(--white); margin-bottom: 3px; text-transform: uppercase; }
.squad-role { font-family: var(--font-mono); font-size: 11px; color: #888888; margin-bottom: 10px; letter-spacing: 1px; }
.squad-card p { font-size: 13px; color: #CCCCCC; line-height: 1.6; }

/* EXCUSE GENERATOR */
.excuse-section {
  background: rgba(207, 10, 44, 0.06);
  border: 1px solid rgba(207, 10, 44, 0.25);
  border-top: 3px solid var(--red);
  padding: 30px;
  border-radius: 4px;
  text-align: center;
  margin-top: 36px;
  box-shadow: 0 0 30px rgba(207, 10, 44, 0.08);
}

.excuse-section h3 { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.excuse-section > p { color: #AAAAAA; margin-bottom: 22px; font-size: 15px; }

.excuse-btn {
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  color: var(--white);
  border: none;
  padding: 14px 38px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--glow-red);
}

.excuse-btn:hover { background: linear-gradient(135deg, #E8102F, var(--red)); transform: translateY(-2px); box-shadow: 0 8px 25px var(--glow-red); }

.excuse-output {
  margin-top: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 4px;
  min-height: 80px;
}

.excuse-text { font-size: 17px; color: var(--white); font-style: italic; line-height: 1.7; margin-bottom: 10px; }
.excuse-dave { font-family: var(--font-mono); font-size: 12px; color: var(--amber-bar); }
.excuse-count { margin-top: 10px; font-family: var(--font-mono); font-size: 11px; color: #666666; }

/* PENALTY MORGUE */
.morgue-stats-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.morgue-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 18px 24px;
  border-radius: 4px;
  text-align: center;
  flex: 1;
  min-width: 110px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ms-num { font-family: var(--font-display); font-size: 38px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 5px; }
.ms-good { color: var(--green); text-shadow: 0 0 10px rgba(0, 166, 81, 0.4); }
.ms-bad { color: var(--red); text-shadow: 0 0 10px var(--glow-red); }
.ms-label { font-family: var(--font-mono); font-size: 11px; color: #888888; letter-spacing: 1px; text-transform: uppercase; }

.morgue-table-wrap { overflow-x: auto; margin-bottom: 28px; }

.morgue-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.morgue-table th { background: rgba(0, 48, 135, 0.2); padding: 11px 13px; text-align: left; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--neon-blue); text-transform: uppercase; border-bottom: 2px solid var(--border); text-shadow: 0 0 8px rgba(0, 191, 255, 0.4); }
.morgue-table td { padding: 11px 13px; border-bottom: 1px solid var(--border); vertical-align: top; }
.row-loss td:first-child { border-left: 3px solid var(--red); }
.row-win td:first-child { border-left: 3px solid var(--green); }
.res-loss { color: var(--red); font-weight: bold; font-family: var(--font-display); text-shadow: 0 0 8px var(--glow-red); }
.res-win { color: var(--green); font-weight: bold; font-family: var(--font-display); }
.morgue-table td:last-child { color: #AAAAAA; font-style: italic; font-size: 13px; }

.southgate-box {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-left: 4px solid var(--gold);
  padding: 22px;
  margin-bottom: 36px;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

.southgate-box h3 { font-family: var(--font-display); font-size: 17px; color: var(--gold); margin-bottom: 10px; text-transform: uppercase; text-shadow: 0 0 10px var(--glow-gold); }
.southgate-box p { color: #CCCCCC; line-height: 1.8; font-size: 15px; }

/* PENALTY GAME */
.penalty-game-section {
  background: rgba(0, 166, 81, 0.05);
  border: 1px solid rgba(0, 166, 81, 0.2);
  border-top: 3px solid var(--green);
  padding: 30px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 166, 81, 0.05);
}

.penalty-game-section h3 { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.penalty-game-section > p { color: #AAAAAA; margin-bottom: 22px; font-size: 15px; }
.penalty-game { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.penalty-goal-frame {
  width: 200px;
  height: 100px;
  border: 4px solid var(--white);
  border-bottom: none;
  position: relative;
  background: rgba(0, 166, 81, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 166, 81, 0.1);
}

.penalty-keeper { font-family: var(--font-display); font-size: 14px; font-weight: 900; color: var(--gold); transition: transform 0.3s ease; text-shadow: 0 0 10px var(--glow-gold); }

.penalty-btn {
  background: linear-gradient(135deg, var(--green), #008040);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.penalty-btn:hover { background: linear-gradient(135deg, #00B850, var(--green)); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4); }
.penalty-result { font-family: var(--font-display); font-size: 22px; font-weight: 900; min-height: 30px; letter-spacing: 1px; }
.penalty-score { font-family: var(--font-mono); font-size: 12px; color: #888888; }

/* MANAGER GRAVEYARD */
.graveyard-table-wrap { overflow-x: auto; margin-bottom: 20px; }

.graveyard-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.graveyard-table th { background: rgba(0, 48, 135, 0.2); padding: 11px 13px; text-align: left; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--neon-blue); text-transform: uppercase; border-bottom: 2px solid var(--border); text-shadow: 0 0 8px rgba(0, 191, 255, 0.4); }
.graveyard-table td { padding: 10px 13px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; }
.graveyard-table td:first-child { font-weight: bold; color: var(--white); }
.graveyard-table td:nth-child(2) { color: #888888; font-family: var(--font-mono); font-size: 12px; white-space: nowrap; }
.graveyard-table td:nth-child(3) { color: #AAAAAA; font-style: italic; }
.graveyard-table td:nth-child(4) { color: #CCCCCC; max-width: 260px; }
.r-good { color: var(--green) !important; font-family: var(--font-mono) !important; font-size: 12px !important; }
.r-mid { color: var(--amber-bar) !important; font-family: var(--font-mono) !important; font-size: 12px !important; }
.r-bad { color: var(--red) !important; font-family: var(--font-mono) !important; font-size: 12px !important; text-shadow: 0 0 6px var(--glow-red); }
.r-tbd { color: var(--gold) !important; font-family: var(--font-mono) !important; font-size: 12px !important; text-shadow: 0 0 6px var(--glow-gold); }
.current-row { background: rgba(255, 215, 0, 0.04); }
.current-row td:first-child { color: var(--gold) !important; text-shadow: 0 0 8px var(--glow-gold); }

.graveyard-verdict {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber-bar);
  padding: 14px 18px;
  font-size: 14px;
  color: #AAAAAA;
  font-style: italic;
  border-radius: 3px;
}

/* GOLDEN GENERATION */
.golden-incidents {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.incident-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 18px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s;
}

.incident-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 15px rgba(207, 10, 44, 0.1); }

.incident-year { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 7px; text-shadow: 0 0 15px var(--glow-red); }
.incident-title { font-family: var(--font-display); font-size: 13px; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; padding-bottom: 9px; border-bottom: 1px solid var(--border); }
.incident-card p { font-size: 14px; color: #CCCCCC; line-height: 1.7; }

.paradox-box {
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-left: 4px solid var(--gold);
  padding: 22px;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.04);
}

.paradox-box h3 { font-family: var(--font-display); font-size: 17px; color: var(--gold); margin-bottom: 10px; text-transform: uppercase; text-shadow: 0 0 10px var(--glow-gold); }
.paradox-box p { color: #CCCCCC; line-height: 1.8; font-size: 15px; }

/* 1966 RELIC ROOM */
.relic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.relic-card {
  background: var(--bg-card-warm);
  border: 1px solid var(--border-warm);
  padding: 22px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.2s;
}

.relic-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 15px rgba(255, 215, 0, 0.08); }

.relic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber-bar));
  box-shadow: 0 0 10px var(--glow-gold);
}

.relic-card h3 { font-family: var(--font-display); font-size: 15px; color: var(--gold); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 0 8px var(--glow-gold); }
.relic-card p { font-size: 14px; color: #CCCCCC; line-height: 1.7; }

/* BINGO */
.bingo-card {
  background: var(--bg-card);
  border: 2px solid var(--red);
  max-width: 580px;
  margin: 0 auto 22px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(207, 10, 44, 0.15);
}

.bingo-header-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(135deg, var(--red), var(--dark-red));
}

.bingo-hcell { text-align: center; padding: 12px; font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: 2px; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

.bingo-grid { display: grid; grid-template-columns: repeat(5, 1fr); }

.bingo-cell {
  border: 1px solid var(--border);
  padding: 9px 5px;
  text-align: center;
  font-size: 11px;
  color: #CCCCCC;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.bingo-cell:hover { background: rgba(207, 10, 44, 0.12); box-shadow: inset 0 0 10px rgba(207, 10, 44, 0.1); }
.bingo-cell.marked { background: linear-gradient(135deg, var(--red), var(--dark-red)); color: var(--white); font-weight: bold; box-shadow: inset 0 0 10px rgba(0,0,0,0.3); }
.bingo-cell.free { background: linear-gradient(135deg, var(--gold), var(--amber-bar)); color: #000; font-weight: bold; font-size: 10px; }

.bingo-controls { text-align: center; }

.bingo-reset-btn {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  padding: 9px 26px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bingo-reset-btn:hover { background: var(--red); color: var(--white); box-shadow: 0 0 15px var(--glow-red); }
.bingo-status { font-family: var(--font-mono); font-size: 12px; color: #888888; }

/* FOOTER */
.main-footer {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #050410 100%);
  border-top: 3px solid var(--red);
  padding: 48px 30px;
  text-align: center;
  box-shadow: 0 -4px 30px rgba(207, 10, 44, 0.15);
}

.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 7px;
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.footer-location {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neon-blue);
  letter-spacing: 1px;
  margin-bottom: 22px;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.footer-nav a {
  color: #888888;
  text-decoration: none;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all 0.2s;
}
.footer-nav a:hover { color: var(--white); border-color: var(--red); box-shadow: 0 0 10px var(--glow-red); }

.footer-disclaimer { font-size: 12px; color: #555555; line-height: 1.8; font-family: var(--font-mono); }
.footer-disclaimer strong { color: #888888; }

/* ===== GLOBAL IMAGE RULES ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== DISPATCH IMAGE CONTAINERS ===== */
.dispatch-image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  margin: 18px 0;
  line-height: 0;
}

.dispatch-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

.dispatch-image-full {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  margin: 18px 0;
  line-height: 0;
}

.dispatch-image-full img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ===== SECTION HEADER CLASSES ===== */
.section-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: #aaa;
  max-width: 760px;
}

/* ===== DISPATCH CARD CLASSES ===== */
.dispatch-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.dispatch-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon-blue);
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

.dispatch-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  color: #fff;
}

.dispatch-headline {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.dispatch-body {
  color: #ccc;
  font-size: 15px;
  line-height: 1.75;
}

.dispatch-body p {
  margin-bottom: 14px;
}

.dispatch-body p:last-child {
  margin-bottom: 0;
}

.dispatch-body em {
  color: #e8e8e8;
  font-style: italic;
}

.dispatch-body strong {
  color: var(--white);
  font-weight: 700;
}

/* ===== STATS GRID ===== */
.dispatch-stats-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.stat-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section { padding: 50px 20px 40px; }
  .hero-counters { flex-direction: column; align-items: center; }
  .counter-block { min-width: 250px; }
  .main-nav { flex-direction: column; gap: 10px; padding: 10px 14px; }
  .nav-links { justify-content: center; }
  .section-inner { padding: 0 12px; }
  .dispatch-grid { grid-template-columns: 1fr; }
  .tuchel-grid { grid-template-columns: 1fr; }
  .morgue-table { font-size: 12px; }
  .graveyard-table { font-size: 12px; }
  .relic-grid { grid-template-columns: 1fr; }
  .golden-incidents { grid-template-columns: 1fr; }

  /* Images */
  .dispatch-img { border-radius: 4px; }
  .dispatch-image-wrap { margin: 12px 0; }
  .dispatch-image-full { margin: 12px 0; }

  /* Stats grids — force 2 columns on mobile */
  .dispatch-stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .stat-item { padding: 12px 8px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 9px; letter-spacing: 0.5px; }

  /* Dispatch cards */
  .dispatch-card { padding: 14px 12px; }
  .dispatch-headline { font-size: 15px; line-height: 1.35; }
  .dispatch-body { font-size: 14px; line-height: 1.65; }
  .section-title { font-size: 20px; }
  .section-subtitle { font-size: 13px; }

  /* Section padding */
  .site-section { padding: 40px 0 !important; }
}
