:root {
  color-scheme: dark;
  --bg: #08090d;
  --panel: rgba(18, 20, 27, 0.82);
  --panel-strong: rgba(24, 26, 35, 0.94);
  --text: #f4efe4;
  --muted: #b9b0a3;
  --red: #d9232e;
  --red-strong: #ff3342;
  --gold: #d6b45c;
  --gold-strong: #f3cf74;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.45);
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(216, 35, 46, 0.2), transparent 34rem),
    linear-gradient(180deg, #101219 0%, var(--bg) 44%, #050609 100%);
  color: var(--text);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(4, 5, 8, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.language,
.actions,
.cards,
.split,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.nav {
  gap: clamp(1rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a:hover,
.language a:hover,
.language .active {
  color: var(--red-strong);
}

.language {
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8rem clamp(1.25rem, 5vw, 5rem) 5rem;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.97) 0%, rgba(5, 6, 9, 0.78) 38%, rgba(5, 6, 9, 0.32) 68%, rgba(5, 6, 9, 0.82) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topline::before {
  content: "+";
  color: var(--text);
  font-size: 2rem;
  font-weight: 300;
}

.kicker {
  margin-bottom: 0.25rem;
  color: #9b9b9b;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.45);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.tagline {
  margin-bottom: 1.25rem;
  color: #a7a7a7;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.lead,
.section-head p,
.cta p,
.card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.lead {
  max-width: 650px;
  font-size: 1.18rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.7rem;
}

.trust-row span {
  min-width: 150px;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-row b,
.trust-row small {
  display: block;
}

.trust-row b {
  color: var(--text);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.trust-row small {
  color: var(--muted);
}

.actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  border: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.38);
}

.button span {
  padding-left: 0.8rem;
}

.game-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.8rem;
}

.game-strip a {
  min-width: 168px;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c5c5c5;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.section,
.split,
.cta {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.section-head {
  max-width: 850px;
  margin-bottom: 2.25rem;
}

.cards {
  align-items: stretch;
  gap: 1rem;
}

.card {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 1.5rem 3rem var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card div {
  padding: 1.35rem;
}

.split {
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  background: var(--panel-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split > div {
  max-width: 430px;
}

.steps {
  width: min(100%, 680px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 1.12rem;
}

.steps span {
  color: var(--gold-strong);
  font-weight: 900;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta > div:first-child {
  max-width: 760px;
}

.footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1.25rem, 5vw, 5rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer a {
  color: var(--red-strong);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header,
  .cards,
  .split,
  .cta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    position: static;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 640px;
    padding-top: 4rem;
  }

  .card {
    width: 100%;
  }
}
