@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;900&family=Exo+2:wght@300;400;500&display=swap');

:root {
  --gold:         #f0b429;
  --gold-dark:    #c08000;
  --gold-glow:    rgba(240,180,41,0.35);
  --silver:       #c8c8c8;
  --silver-dim:   #777;
  --red:          #c91a00;
  --red-bright:   #ff3200;
  --red-glow:     rgba(200,26,0,0.4);
  --bg:           #060606;
  --bg-panel:     #0e0e0e;
  --bg-card:      #0a0a0a;
  --border:       #1e1e1e;
  --border-mid:   #2a2a2a;
  --text:         #c8c8c8;
  --text-dim:     #666;
  --orange:       #dd6600;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: #fff; }

/* ── TICKER ─────────────────────────────────────────── */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid #ff4400;
  border-top: 1px solid #ff4400;
  height: 38px;
  display: flex;
  align-items: center;
}

.ticker-badge {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gold);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  z-index: 5;
  white-space: nowrap;
}

.ticker-badge::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  border-left: 12px solid var(--gold);
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
}

.ticker-scroll {
  margin-left: 115px;
  overflow: hidden;
  flex: 1;
}

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

.ticker-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  padding: 0 50px;
}

.ticker-track span::before { content: '⚡  '; }

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

/* ── HEADER ──────────────────────────────────────────── */
header {
  background: #000;
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo img {
  height: 150px;
  width: auto;
  display: block;
}

.lang-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.lang-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--silver-dim);
  transition: all 0.2s;
  text-decoration: none;
}

.lang-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(240,180,41,0.07);
}

.lang-btn.active {
  color: var(--gold);
  border-color: var(--gold-dark);
  background: rgba(240,180,41,0.1);
}

.flag { font-size: 22px; line-height: 1; }

/* ── ALERT METER ─────────────────────────────────────── */
.alert-section {
  background: linear-gradient(180deg, #0c0000 0%, var(--bg) 100%);
  padding: 28px 20px;
  border-bottom: 1px solid #1a0000;
}

.alert-label-top {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--silver-dim);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.alert-bar-outer {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.alert-bar-track {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  height: 40px;
  overflow: visible;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.8);
}

.alert-bar-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #005500 0%,
    #668800 18%,
    #bb9900 38%,
    #dd5500 58%,
    #cc1100 76%,
    #770000 100%
  );
  border-radius: 2px;
  opacity: 0.85;
}

.alert-needle-wrap {
  position: absolute;
  top: -8px;
  /* set via inline style per page */
  transition: left 1.5s ease;
}

.alert-needle {
  width: 3px;
  height: 56px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 10px #fff, 0 0 20px rgba(255,255,255,0.5);
  margin: 0 auto;
}

.alert-needle-label {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff;
  margin-top: 4px;
  white-space: nowrap;
  transform: translateX(-50%);
  margin-left: 1.5px;
}

.alert-bar-ticks {
  display: flex;
  justify-content: space-between;
  max-width: 820px;
  margin: 8px auto 0;
  padding: 0 2px;
}

.alert-bar-ticks span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── COUNTDOWN ───────────────────────────────────────── */
.countdown-section {
  padding: 70px 40px 60px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, #0d0d00 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--border);
}

.countdown-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.countdown-left {
  text-align: center;
  flex-shrink: 0;
}

.countdown-right {
  flex-shrink: 0;
}

.countdown-big-logo {
  width: 320px;
  max-width: 90vw;
  height: auto;
  display: block;
  border-radius: 4px;
}

.countdown-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--silver-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.countdown-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--silver);
  text-transform: uppercase;
  margin-bottom: 30px;
}

#countdown-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(130px, 22vw, 240px);
  line-height: 0.88;
  color: var(--gold);
  text-shadow:
    0 0 30px var(--gold-glow),
    0 0 80px rgba(240,180,41,0.15);
  animation: pulse-number 4s ease-in-out infinite;
  display: block;
}

@keyframes pulse-number {
  0%, 100% {
    text-shadow:
      0 0 25px var(--gold-glow),
      0 0 60px rgba(240,180,41,0.12);
  }
  50% {
    text-shadow:
      0 0 50px rgba(240,180,41,0.6),
      0 0 120px rgba(240,180,41,0.2);
  }
}

.days-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 6vw, 56px);
  letter-spacing: 12px;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-top: -4px;
}

/* ── SECTION COMMON ──────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--silver-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}

.section-title .accent { color: var(--red-bright); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADLINES ───────────────────────────────────────── */
.headlines-section {
  padding: 64px 24px;
  background: var(--bg-panel);
}

.headlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.headline-card {
  background: #f0f0f0;
  border: 1px solid #d0d0d0;
  border-left: 4px solid var(--gold-dark);
  padding: 20px 22px;
  transition: border-left-color 0.25s, transform 0.2s, box-shadow 0.2s;
}

.headline-card:hover {
  border-left-color: var(--red-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.headline-card.critical {
  border-left-color: var(--red-bright);
  background: #fff0f0;
}

.headline-card.opinion {
  border-left-color: #4488cc;
  background: #f0f4ff;
}

.headline-card.opinion .hl-tag { color: #2255aa; }

.headline-card.conspiracy {
  border-left-color: #888;
  background: #f5f5f5;
  border-style: dashed;
  border-left-style: solid;
}

.headline-card.conspiracy .hl-tag { color: #555; }

.hl-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--red-bright);
}

.headline-card.warning .hl-tag { color: var(--orange); }

.hl-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin-bottom: 12px;
}

.hl-meta {
  font-size: 12px;
  color: #555;
  font-family: 'Exo 2', sans-serif;
}

/* ── WORLD MAP ───────────────────────────────────────── */
.map-section {
  padding: 64px 24px;
  background: #040410;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.map-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.map-wrap svg {
  width: 100%;
  height: auto;
  border: 1px solid #1a1a2e;
  border-radius: 4px;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--silver);
  text-transform: uppercase;
}

.legend-swatch {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── CHECKLIST ───────────────────────────────────────── */
.checklist-section {
  padding: 64px 24px;
  background: var(--bg);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.check-cat {
  background: #f0f0f0;
  border: 1px solid #d0d0d0;
  border-top: 3px solid var(--gold-dark);
}

.check-cat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 22px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: background 0.15s;
  user-select: none;
}

.check-item:last-child { border-bottom: none; }
.check-item:hover { background: rgba(0,0,0,0.04); }

.check-box {
  width: 19px;
  height: 19px;
  border: 2px solid #aaa;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s;
  color: #000;
}

.check-item.done .check-box {
  background: var(--gold);
  border-color: var(--gold-dark);
}

.check-item.done .check-text { text-decoration: line-through; color: #999; }

.check-text {
  font-size: 14px;
  color: #222;
  line-height: 1.4;
  font-family: 'Exo 2', sans-serif;
}

.check-note {
  font-size: 11.5px;
  color: #777;
  display: block;
  margin-top: 2px;
}

.check-cat-header {
  padding: 18px 22px 16px;
  border-bottom: 1px solid #d0d0d0;
}

.checklist-progress {
  max-width: 1200px;
  margin: 28px auto 0;
  text-align: center;
}

.progress-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--silver-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.progress-track {
  max-width: 420px;
  height: 6px;
  background: var(--border-mid);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
  width: 0%;
  transition: width 0.4s ease;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #000;
  border-top: 2px solid #111;
  padding: 36px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo img {
  height: 54px;
  opacity: 0.5;
  filter: grayscale(20%);
  margin-bottom: 16px;
}

.footer-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--border-mid);
  margin: 16px auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #444;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    padding: 14px 16px;
    gap: 14px;
  }

  .header-logo img { height: 64px; }

  .lang-nav { justify-content: center; }

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

  .map-legend { gap: 14px; }

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

@media (max-width: 480px) {
  .ticker-badge { font-size: 10px; padding: 0 12px; }
  .ticker-scroll { margin-left: 88px; }
}