:root {
  --bg: #0a1220;
  --panel: #0f1d33;
  --panel-2: #0b2a4a;
  --card: rgba(255, 255, 255, 0.08);
  --card-2: rgba(255, 255, 255, 0.06);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #7b1b1b;
  --accent-2: #2a67b3;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 15% 0%, #13264a 0%, var(--bg) 55%),
    radial-gradient(900px 600px at 95% 10%, #2f1020 0%, transparent 50%), var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 18, 32, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), #a11f1f);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 22px rgba(123, 27, 27, 0.25);
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-weight: 750;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav a {
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.header-cta {
  display: flex;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent), #a11f1f);
  box-shadow: 0 18px 28px rgba(123, 27, 27, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  padding: 44px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.kicker {
  margin: 0 0 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lead {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.badge {
  border-radius: var(--radius-sm);
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-title {
  font-size: 12px;
  color: var(--faint);
  font-weight: 650;
}

.badge-value {
  margin-top: 4px;
  font-weight: 750;
}

.countdown {
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(42, 103, 179, 0.15), rgba(123, 27, 27, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.countdown-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

.countdown-value {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.countdown-sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--faint);
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-photo,
.hero-poster {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-poster img {
  width: 100%;
  height: auto;
}

.section {
  padding: 46px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 16px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.prose {
  margin: 0;
  color: var(--muted);
}

.inline-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.aside {
  border-radius: var(--radius);
  padding: 16px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.aside h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li + li {
  margin-top: 6px;
}

.vote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vote-card {
  padding: 16px 16px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vote-title {
  font-size: 12px;
  color: var(--faint);
  font-weight: 700;
}

.vote-value {
  margin-top: 8px;
  font-weight: 850;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.vote-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.callout {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border-radius: var(--radius);
  background: rgba(42, 103, 179, 0.12);
  border: 1px solid rgba(42, 103, 179, 0.25);
}

.callout-title {
  font-weight: 850;
}

.callout-body {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.thumb {
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 120ms ease, border-color 120ms ease;
}

.thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}

.thumb:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-brand {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.footer-sub {
  color: var(--muted);
  font-size: 13px;
}

.footer-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lightbox {
  width: min(980px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 12px;
  background: rgba(8, 12, 20, 0.92);
  color: var(--text);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.lightbox-close {
  margin-left: auto;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 750;
}

.lightbox-img {
  margin-top: 10px;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
  }

  .brand {
    grid-area: brand;
  }

  .header-cta {
    grid-area: cta;
  }

  .nav {
    grid-area: nav;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

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

  .hero-badges {
    grid-template-columns: 1fr;
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }

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

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

