:root {
  --bg: #07111f;
  --bg-deep: #030812;
  --panel: #0c1b32;
  --panel-soft: #102443;
  --panel-strong: #081221;
  --line: rgba(214, 226, 255, 0.14);
  --line-strong: rgba(255, 215, 0, 0.32);
  --text: #f7f3ea;
  --muted: #b8c7df;
  --gold: #ffd34d;
  --gold-soft: #ffe7a3;
  --red: #d74b3f;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(215, 75, 63, 0.17), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(255, 211, 77, 0.14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(44, 83, 153, 0.22), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #081326 46%, #030812 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 85%);
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 1rem 0 3.5rem;
}

.site-ribbon {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.site-ribbon p {
  margin: 0;
}

.ring-strip {
  display: inline-flex;
  gap: 0.35rem;
}

.ring {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid currentColor;
  opacity: 0.95;
}

.ring-blue { color: #4f8cff; }
.ring-yellow { color: #ffd34d; }
.ring-black { color: #c7d0de; }
.ring-green { color: #55c98a; }
.ring-red { color: #ff675f; }

.site-header,
.site-footer,
.lead-card,
.feature-card,
.page-hero,
.table-wrap,
.newsletter-card,
.faq-item,
.sidebar-card,
.focus-card,
.ad-slot,
.cookie-banner {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header,
.site-footer,
.lead-card,
.feature-card,
.page-hero,
.table-wrap,
.newsletter-card,
.faq-item,
.sidebar-card,
.focus-card,
.ad-slot,
.cookie-banner,
.countdown-inline {
  background: linear-gradient(180deg, rgba(12, 27, 50, 0.9), rgba(5, 12, 24, 0.96));
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.site-header::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 180px;
  background: linear-gradient(90deg, rgba(255, 211, 77, 0.16), transparent);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 30;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  position: relative;
  z-index: 1;
}

.brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #08101c;
  font-family: "Antonio", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
h1,
h2,
h3,
summary,
.site-nav a,
.button,
.count-number,
.snapshot-rank,
.focus-index {
  font-family: "Antonio", Arial, sans-serif;
}

.brand-copy strong {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
}

.site-nav a {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.lang-chip:hover,
.lang-chip:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero,
.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.86fr);
  gap: 1.2rem;
}

.hero,
.page-hero,
.home-editorial,
.section-block {
  margin-top: 1.5rem;
}

.hero-home {
  align-items: stretch;
}

.hero-copy,
.page-hero,
.newsletter-card,
.table-wrap {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.14), rgba(7, 17, 31, 0.74)),
    radial-gradient(circle at 78% 18%, rgba(255, 211, 77, 0.14), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(215, 75, 63, 0.18), transparent 32%),
    linear-gradient(135deg, #0f2749 0%, #09111f 54%, #07111f 100%);
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 77, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  pointer-events: none;
}

.hero-sidebar {
  display: grid;
  gap: 1rem;
}

.sidebar-card,
.focus-card,
.lead-card,
.feature-card,
.faq-item {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.sidebar-card h3,
.lead-card h2,
.feature-card h3,
.newsletter-card h3,
.page-hero h1 {
  max-width: 16ch;
}

.sidebar-card p:last-child,
.lead-card p:last-child,
.feature-card p:last-child {
  color: var(--muted);
}

.eyebrow,
.mini-kicker {
  margin: 0 0 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.73rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

h3,
summary {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.lede,
.site-footer p,
.feature-card p,
.newsletter-card p,
.faq-item p,
li,
td,
th,
label span,
input {
  font-size: 1rem;
  line-height: 1.65;
}

.lede {
  max-width: 58ch;
  color: var(--muted);
}

.hero-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button,
.newsletter-form button,
.cookie-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #08101c;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.newsletter-form button:hover,
.cookie-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(255, 211, 77, 0.18);
}

.button-secondary,
.ghost,
.cookie-actions .ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.stat-pill {
  min-width: 12rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.stat-pill strong {
  font-size: 1rem;
  font-weight: 700;
}

.snapshot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.snapshot-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 44px;
  gap: 0.8rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.snapshot-list li:last-child {
  border-bottom: 0;
}

.snapshot-rank {
  font-size: 1.25rem;
  color: var(--gold);
}

.snapshot-country {
  font-weight: 600;
}

.snapshot-total {
  justify-self: end;
  color: var(--muted);
  font-weight: 700;
}

.home-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
}

.lead-card {
  min-height: 20rem;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.1), rgba(7, 17, 31, 0.84)),
    linear-gradient(135deg, rgba(215, 75, 63, 0.22), rgba(255, 211, 77, 0.06)),
    linear-gradient(160deg, #102443, #081221);
}

.lead-card::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.04) 0 8%, transparent 8% 100%),
    linear-gradient(145deg, transparent 0 72%, rgba(255, 211, 77, 0.08) 72% 100%);
  pointer-events: none;
}

.lead-card::after {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 77, 0.2), transparent 70%);
}

.side-stack {
  display: grid;
  gap: 1rem;
}

.feature-card-compact {
  min-height: 9.5rem;
}

.text-link,
.feature-card a {
  color: var(--gold);
  font-weight: 700;
}

.ad-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ad-slot {
  min-height: 8rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 1.15rem 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 211, 77, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(12, 27, 50, 0.94), rgba(5, 12, 24, 0.96));
}

.ad-slot span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.ad-slot strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.9rem;
}

.ad-slot-box {
  min-height: 15rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.home-market {
  padding: 0;
}

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

.focus-card {
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.focus-index {
  color: var(--gold);
  font-size: 2.1rem;
  line-height: 1;
}

.bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.newsletter-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.6rem;
}

.newsletter-form label {
  display: grid;
  gap: 0.3rem;
}

.newsletter-form input {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.fine-print,
.form-status,
.site-footer p {
  color: var(--muted);
}

.lang-strip,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-chip {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
}

.lang-chip[aria-current="true"] {
  background: var(--gold);
  border-color: transparent;
  color: #08101c;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 77, 0.18), transparent 68%);
}

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

.medal-table {
  width: 100%;
  border-collapse: collapse;
}

.medal-table th,
.medal-table td {
  padding: 0.95rem 0.7rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.medal-table th {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
}

.countdown-inline {
  display: inline-grid;
  gap: 0.25rem;
  margin-top: 1.3rem;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 211, 77, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(12, 27, 50, 0.9), rgba(5, 12, 24, 0.96));
}

.section-split-la28 {
  align-items: start;
}

.venue-cluster {
  display: grid;
  gap: 1rem;
}

.count-number {
  font-size: clamp(3.5rem, 8vw, 5.8rem);
  line-height: 0.9;
  color: var(--gold);
}

.faq-item {
  margin-bottom: 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.site-footer {
  margin-top: 2rem;
  border-radius: 28px;
  align-items: flex-start;
}

.footer-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.footer-link {
  color: var(--gold);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(440px, calc(100% - 2rem));
  padding: 1rem;
  border-radius: 20px;
  z-index: 40;
}

@media (max-width: 1040px) {
  .hero,
  .section-split,
  .home-editorial,
  .ad-row,
  .feature-grid,
  .focus-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    border-radius: 26px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--content-width));
    padding-top: 0.5rem;
  }

  .site-header,
  .site-footer,
  .hero-copy,
  .page-hero,
  .table-wrap,
  .newsletter-card,
  .lead-card,
  .feature-card,
  .sidebar-card,
  .focus-card,
  .faq-item {
    padding: 1rem;
  }

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

  .count-number {
    font-size: 3.2rem;
  }
}
