:root {
  --bg: #090804;
  --bg-soft: #111007;
  --panel: rgba(18, 15, 8, 0.82);
  --panel-strong: rgba(10, 9, 5, 0.92);
  --line: rgba(255, 201, 58, 0.28);
  --line-soft: rgba(255, 255, 255, 0.08);
  --gold: #ffc72f;
  --gold-soft: #ffdd72;
  --text: #f6f2e8;
  --muted: rgba(246, 242, 232, 0.72);
  --muted-soft: rgba(246, 242, 232, 0.5);
  --green: #44c567;
  --red: #df6547;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "PingFang SC", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 196, 46, 0.22), transparent 30%),
    radial-gradient(circle at 0% 12%, rgba(255, 196, 46, 0.12), transparent 22%),
    linear-gradient(180deg, #090804 0%, #0c0a05 40%, #090804 100%);
}

html[lang="en"] body {
  font-family: "Helvetica Neue", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 400;
}

html[lang="en"] .hero h1,
html[lang="en"] .section-heading h2,
html[lang="en"] .sim-copy h2,
html[lang="en"] .cta-overlay h2 {
  font-family: "Helvetica Neue Condensed", "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-weight: 600;
}

html[lang="en"] .site-nav,
html[lang="en"] .hero-subtitle,
html[lang="en"] .match-card,
html[lang="en"] .sim-copy,
html[lang="en"] .feature-card,
html[lang="en"] .footer-grid {
  font-weight: 400;
}

html[lang="en"] .btn,
html[lang="en"] .lang-toggle,
html[lang="en"] .eyebrow,
html[lang="en"] .brand {
  font-weight: 700;
}

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 48px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.hero h1,
.cta-overlay h2 {
  margin: 0;
  font-family: "Avenir Next Condensed", "DIN Alternate", "PingFang SC", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 199, 47, 0.16);
  border: 1px solid rgba(255, 199, 47, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9, 8, 4, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  color: var(--gold);
  font-size: 1.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-actions,
.hero-actions,
.section-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.lang-toggle {
  min-width: 74px;
  min-height: 50px;
  border: 1px solid rgba(255, 199, 47, 0.32);
  border-radius: 16px;
  color: var(--gold);
  background: rgba(255, 199, 47, 0.06);
  font-weight: 900;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-large {
  min-height: 58px;
  padding: 0 28px;
}

.btn-solid {
  color: #191100;
  background: linear-gradient(180deg, #ffd243 0%, #f2b400 100%);
  box-shadow: 0 18px 40px rgba(255, 184, 0, 0.22);
}

.btn-outline {
  border-color: rgba(255, 199, 47, 0.55);
  background: rgba(255, 199, 47, 0.06);
}

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

.btn-success {
  color: white;
  background: linear-gradient(180deg, #3dbd5f 0%, #278b40 100%);
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  padding: 52px 0 32px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 3, 0.96) 0%, rgba(7, 6, 3, 0.86) 29%, rgba(7, 6, 3, 0.38) 55%, rgba(7, 6, 3, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 6, 3, 0.18) 0%, rgba(7, 6, 3, 0.18) 64%, rgba(7, 6, 3, 0.92) 100%),
    url("./assets/hero-mascot.png") no-repeat center center / cover;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 55% 38%, rgba(255, 198, 48, 0.16), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(7, 6, 3, 0.72) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -2% 0;
  height: 160px;
  background: radial-gradient(circle at center, rgba(255, 199, 47, 0.15), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 20px;
  min-height: calc(100vh - 168px);
}

.hero-copy {
  max-width: 720px;
  padding: 42px 0 30px;
}

.hero h1 {
  font-size: clamp(3.25rem, 5.7vw, 5.5rem);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.headline-main {
  color: var(--text);
}

.headline-gold {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255, 196, 46, 0.26);
}

.hero-subtitle {
  max-width: 600px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: var(--muted);
}

.hero-proof li {
  position: relative;
  padding-left: 18px;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 199, 47, 0.35);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 580px;
}

.countdown-card {
  position: absolute;
  right: 0;
  top: 112px;
  width: min(290px, 42vw);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(19, 15, 8, 0.86);
  box-shadow: var(--shadow);
}

.countdown-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown-grid div {
  padding: 14px 8px 12px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.countdown-grid strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1;
}

.countdown-grid span,
.countdown-copy,
.match-card p,
.match-card small,
.sim-copy p,
.feature-card p,
.footer-brand p,
.trade-form label,
.cta-overlay p {
  color: var(--muted);
}

.countdown-copy {
  margin: 18px 0 0;
  line-height: 1.7;
}

.matches-grid,
.feature-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

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

.match-card,
.feature-card,
.sim-shell,
.cta-panel,
.download-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(26, 21, 11, 0.92) 0%, rgba(12, 10, 5, 0.94) 100%);
  box-shadow: var(--shadow);
}

.match-card,
.feature-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.match-stage {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.match-card h3,
.feature-card h3,
.trade-title,
.footer-grid h3 {
  margin: 0;
}

.vote-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.vote-row {
  display: grid;
  grid-template-columns: 68px 1fr 42px;
  align-items: center;
  gap: 10px;
}

.bar {
  position: relative;
  height: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.bar i {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #c79d1a, #f0cd61);
}

.bar.neutral i {
  background: linear-gradient(90deg, rgba(244, 231, 194, 0.92), rgba(202, 188, 151, 0.9));
}

.bar.muted i {
  background: linear-gradient(90deg, rgba(174, 167, 146, 0.88), rgba(129, 123, 108, 0.82));
}

.section-cta {
  justify-content: center;
  margin-top: 28px;
}

.sim-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
  position: relative;
}

.sim-shell::before {
  content: "";
  position: absolute;
  inset: auto -5% -10% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 199, 47, 0.18), transparent 68%);
}

.sim-copy h2,
.section-heading h2,
.cta-overlay h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.sim-copy p {
  max-width: 520px;
  line-height: 1.8;
}

.sim-points {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 32px;
  list-style: none;
}

.sim-points li {
  display: grid;
  gap: 6px;
  padding: 18px 18px 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.sim-points span {
  color: var(--muted);
}

.sim-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.sim-market,
.trade-form {
  border-radius: 24px;
  background: rgba(8, 8, 5, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.sim-market-top,
.depth,
.quick-amounts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.market-tag {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sim-market-top p,
.depth-meta span,
.depth span {
  margin: 4px 0 0;
  color: var(--muted-soft);
}

.market-status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #b9ffc9;
  background: rgba(68, 197, 103, 0.16);
  font-size: 0.88rem;
}

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

.odds-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.odds-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-soft);
}

.odds-card strong {
  font-size: 1.8rem;
}

.odds-card.up {
  background: rgba(68, 197, 103, 0.18);
}

.odds-card.draw {
  background: rgba(255, 255, 255, 0.06);
}

.odds-card.down {
  background: rgba(223, 101, 71, 0.18);
}

.chart {
  position: relative;
  overflow: hidden;
  height: 220px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  background-size: 100% 44px, 44px 100%, 100% 100%;
}

.chart-line {
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  mask-repeat: no-repeat;
  mask-size: cover;
  opacity: 0.9;
}

.chart-line.green {
  background: linear-gradient(180deg, rgba(68, 197, 103, 0) 0%, rgba(68, 197, 103, 0.16) 100%);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 220'%3E%3Cpath fill='none' stroke='white' stroke-width='6' d='M0 150 C80 120 110 140 180 110 S300 60 360 84 S460 170 530 120 S640 110 710 70 S780 102 800 84'/%3E%3C/svg%3E");
}

.chart-line.red {
  background: linear-gradient(180deg, rgba(223, 101, 71, 0) 0%, rgba(223, 101, 71, 0.16) 100%);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 220'%3E%3Cpath fill='none' stroke='white' stroke-width='6' d='M0 170 C90 140 170 182 240 160 S360 120 430 150 S530 200 610 170 S710 154 800 168'/%3E%3C/svg%3E");
}

.depth {
  margin-top: 18px;
  align-items: flex-start;
}

.depth-bar {
  flex: 1;
  display: grid;
  grid-template-columns: 52fr 48fr;
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
}

.depth-left {
  background: var(--green);
}

.depth-right {
  background: var(--red);
}

.trade-form {
  display: grid;
  gap: 14px;
}

.trade-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.trade-form input,
.trade-form select {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.quick-amounts {
  gap: 8px;
  flex-wrap: wrap;
}

.quick-amounts button {
  flex: 1;
  min-width: 48px;
  min-height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 199, 47, 0.2);
  background: rgba(255, 199, 47, 0.08);
  color: var(--gold-soft);
}

.trade-submit {
  width: 100%;
  margin-top: 6px;
}

.credibility-banner,
.cta-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.credibility-banner img,
.cta-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.92;
}

.credibility-banner::after,
.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 4, 0.1) 0%, rgba(8, 7, 4, 0.82) 100%);
}

.stats-grid {
  position: absolute;
  inset: auto 32px 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stats-grid article {
  padding: 22px 18px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 199, 47, 0.2);
  background: rgba(12, 10, 5, 0.7);
  backdrop-filter: blur(8px);
}

.stats-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.stats-grid span {
  color: var(--muted);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -10% auto auto -10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 199, 47, 0.18), transparent 70%);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #1f1600;
  font-weight: 900;
  background: linear-gradient(180deg, #ffd24e 0%, #e2ab00 100%);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 38px 28px;
  text-align: center;
}

.cta-overlay p {
  max-width: 760px;
  line-height: 1.8;
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, 0.8fr) 1fr;
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.download-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  text-align: center;
}

.mobile-only {
  display: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .sim-shell,
  .sim-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .countdown-card {
    top: 40px;
  }

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

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 920px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(14, 11, 6, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .header-actions {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 246px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .matches-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 18px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 32px, 100%);
  }

  .section {
    padding: 38px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero {
    min-height: calc(100svh - 68px);
    padding: 24px 0 22px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(7, 6, 3, 0.94) 0%, rgba(7, 6, 3, 0.74) 37%, rgba(7, 6, 3, 0.16) 58%, rgba(7, 6, 3, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 6, 3, 0.9) 0%, rgba(7, 6, 3, 0.28) 64%, rgba(7, 6, 3, 0.08) 100%),
      url("./assets/hero-mascot.png") no-repeat 64% bottom / auto 66%;
  }

  .hero-backdrop::before {
    background:
      radial-gradient(circle at 70% 64%, rgba(255, 198, 48, 0.16), transparent 30%),
      linear-gradient(180deg, transparent 0%, rgba(7, 6, 3, 0.84) 100%);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: calc(100svh - 114px);
    align-content: start;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: clamp(2.42rem, 11.8vw, 3.18rem);
    line-height: 1.03;
  }

  .hero h1 span {
    white-space: normal;
  }

  .headline-main,
  .headline-gold {
    max-width: 8em;
  }

  .hero-copy {
    width: 100%;
    padding: 12px 0 0;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }

  .hero-subtitle,
  .sim-copy p,
  .cta-overlay p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-subtitle {
    max-width: 25em;
    margin: 18px 0 22px;
  }

  .hero-actions,
  .section-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
  }

  .hero-actions .btn,
  .section-cta .btn,
  .cta-overlay .btn {
    width: 100%;
  }

  .section-cta .btn {
    grid-column: 1 / -1;
  }

  .btn,
  .btn-large {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.9rem;
  }

  .hero-visual {
    width: 100%;
    min-height: 214px;
    margin-top: 0;
  }

  .countdown-card {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(100%, 350px);
    top: auto;
    right: auto;
    margin: 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(14, 11, 6, 0.78);
    backdrop-filter: blur(12px);
  }

  .countdown-label {
    margin-bottom: 10px;
    font-size: 0.86rem;
  }

  .countdown-grid {
    gap: 5px;
  }

  .countdown-grid div {
    padding: 9px 4px 8px;
    border-radius: 11px;
  }

  .countdown-grid strong {
    font-size: 1.34rem;
  }

  .countdown-grid span {
    font-size: 0.78rem;
  }

  .countdown-copy {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .sim-copy h2,
  .section-heading h2,
  .cta-overlay h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .match-card,
  .feature-card,
  .sim-shell {
    padding: 18px;
    border-radius: 18px;
  }

  .match-stage {
    margin-bottom: 12px;
    font-size: 0.78rem;
  }

  .vote-row {
    grid-template-columns: 48px minmax(0, 1fr) 36px;
    gap: 8px;
    font-size: 0.88rem;
  }

  .bar {
    height: 14px;
  }

  .sim-shell {
    gap: 18px;
  }

  .badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
  }

  .sim-points {
    gap: 10px;
    margin: 18px 0 22px;
  }

  .sim-points li {
    padding: 14px;
    border-radius: 14px;
  }

  .sim-market,
  .trade-form {
    padding: 16px;
    border-radius: 18px;
  }

  .sim-market-top {
    align-items: flex-start;
  }

  .odds-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0 16px;
  }

  .odds-card {
    padding: 12px 8px;
    border-radius: 14px;
  }

  .odds-card strong {
    font-size: 1.28rem;
  }

  .chart {
    height: 152px;
    border-radius: 16px;
  }

  .depth {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .quick-amounts button {
    min-width: 0;
  }

  .credibility-banner img,
  .cta-panel img {
    min-height: 360px;
  }

  .credibility-banner {
    display: grid;
    background: linear-gradient(180deg, rgba(26, 21, 11, 0.92) 0%, rgba(12, 10, 5, 0.94) 100%);
  }

  .stats-grid {
    position: relative;
    inset: auto;
    z-index: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    margin-top: -72px;
  }

  .stats-grid article {
    padding: 14px 10px;
    border-radius: 14px;
  }

  .stats-grid strong {
    font-size: 1.5rem;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .cta-overlay {
    justify-items: stretch;
    align-content: end;
    padding: 24px 18px 22px;
    text-align: left;
  }

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

  .site-footer {
    padding-top: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 380px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .hero h1 {
    font-size: 2.32rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .countdown-card {
    width: 100%;
  }

  .countdown-grid strong {
    font-size: 1.16rem;
  }

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

@media (max-width: 760px) {
  body {
    background: #080704;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .container {
    width: min(100vw - 32px, 100%);
  }

  .site-header {
    background: rgba(8, 7, 4, 0.9);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .site-header.is-open .site-nav {
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    border-radius: 14px;
  }

  .site-header.is-open .header-actions {
    left: 16px;
    right: 16px;
    top: calc(100% + 236px);
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding: 0;
    background: #080704;
  }

  .mobile-landing {
    position: relative;
    min-height: calc(100svh - 64px);
    padding: 30px 16px 18px;
    overflow: hidden;
  }

  .mobile-hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(8, 7, 4, 0.94) 0%, rgba(8, 7, 4, 0.66) 34%, rgba(8, 7, 4, 0.08) 59%, rgba(8, 7, 4, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 7, 4, 0.9) 0%, rgba(8, 7, 4, 0.22) 68%, rgba(8, 7, 4, 0.08) 100%),
      url("./assets/hero-mascot.png") no-repeat 63% 77% / auto 63%;
  }

  .mobile-hero-content {
    position: relative;
    z-index: 1;
    max-width: 360px;
    padding-top: 8px;
  }

  .mobile-kicker,
  .mobile-section-head span,
  .mobile-final p {
    margin: 0;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-hero-content h1 {
    max-width: 6.5em;
    margin: 10px 0 12px;
    font-family: "Avenir Next Condensed", "DIN Alternate", "PingFang SC", sans-serif;
    font-size: clamp(2.58rem, 13vw, 3.45rem);
    line-height: 0.98;
  }

  .mobile-hero-content p {
    max-width: 20em;
    margin: 0;
    color: rgba(246, 242, 232, 0.78);
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
    max-width: 330px;
  }

  .mobile-actions .btn,
  .mobile-final .btn,
  .mobile-ticket .btn {
    min-height: 48px;
    border-radius: 12px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .mobile-countdown {
    position: absolute;
    z-index: 1;
    left: 16px;
    right: 16px;
    bottom: 82px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    padding: 10px;
    border: 1px solid rgba(255, 199, 47, 0.24);
    border-radius: 16px;
    background: rgba(12, 10, 6, 0.72);
    backdrop-filter: blur(12px);
  }

  .mobile-countdown div {
    min-width: 0;
    padding: 9px 4px 8px;
    border-radius: 11px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-countdown strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
  }

  .mobile-countdown span {
    color: rgba(246, 242, 232, 0.7);
    font-size: 0.75rem;
  }

  .mobile-proof {
    position: absolute;
    z-index: 1;
    left: 16px;
    right: 16px;
    bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-proof li {
    padding: 7px 9px;
    border: 1px solid rgba(255, 199, 47, 0.18);
    border-radius: 999px;
    color: rgba(246, 242, 232, 0.78);
    background: rgba(8, 7, 4, 0.54);
    font-size: 0.78rem;
  }

  .section {
    padding: 34px 0;
  }

  .mobile-section {
    width: min(100vw - 32px, 100%);
    margin: 0 auto;
  }

  .mobile-section-head {
    margin-bottom: 16px;
  }

  .mobile-section-head h2,
  .mobile-final h2 {
    margin: 8px 0 0;
    font-family: "Avenir Next Condensed", "DIN Alternate", "PingFang SC", sans-serif;
    font-size: 2rem;
    line-height: 1.05;
  }

  .mobile-match-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(258px, 82vw);
    gap: 12px;
    overflow-x: auto;
    padding: 2px 16px 8px;
    margin: 0 -16px;
    scroll-snap-type: x mandatory;
  }

  .mobile-match-track::-webkit-scrollbar {
    display: none;
  }

  .mobile-match-card,
  .mobile-ticket,
  .mobile-stats-panel,
  .mobile-feature-list article,
  .mobile-final {
    border: 1px solid rgba(255, 199, 47, 0.24);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(24, 20, 10, 0.94) 0%, rgba(11, 9, 5, 0.96) 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
  }

  .mobile-match-card {
    scroll-snap-align: start;
    padding: 16px;
  }

  .mobile-match-card span,
  .mobile-ticket small,
  .mobile-match-card p,
  .mobile-feature-list p {
    color: rgba(246, 242, 232, 0.62);
  }

  .mobile-match-card h3 {
    margin: 8px 0 16px;
    font-size: 1.22rem;
  }

  .mobile-odds-row,
  .mobile-ticket-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .mobile-odds-row small {
    color: rgba(246, 242, 232, 0.68);
  }

  .mobile-meter {
    height: 12px;
    margin: 12px 0 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #c99d18, #ffd65a);
  }

  .mobile-match-card p {
    margin: 0;
    font-size: 0.88rem;
  }

  .sim-trade {
    padding-top: 18px;
  }

  .mobile-sim {
    padding: 2px 0;
  }

  .mobile-ticket {
    padding: 16px;
  }

  .mobile-ticket-top strong {
    display: block;
    margin-bottom: 4px;
  }

  .mobile-ticket-top em {
    flex: 0 0 auto;
    padding: 7px 9px;
    border-radius: 999px;
    color: #b9ffc9;
    background: rgba(68, 197, 103, 0.14);
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 800;
  }

  .mobile-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0;
  }

  .mobile-price-grid button {
    min-width: 0;
    padding: 12px 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-price-grid button:first-child {
    background: rgba(68, 197, 103, 0.18);
  }

  .mobile-price-grid button:last-child {
    background: rgba(223, 101, 71, 0.18);
  }

  .mobile-price-grid span,
  .mobile-price-grid strong {
    display: block;
  }

  .mobile-price-grid span {
    margin-bottom: 5px;
    color: rgba(246, 242, 232, 0.66);
    font-size: 0.8rem;
  }

  .mobile-price-grid strong {
    font-size: 1.28rem;
  }

  .mobile-chart {
    position: relative;
    height: 132px;
    overflow: hidden;
    border-radius: 13px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      rgba(255, 255, 255, 0.025);
    background-size: 100% 33px, 33px 100%, 100% 100%;
  }

  .mobile-chart i,
  .mobile-chart b {
    position: absolute;
    inset: 0;
    mask-repeat: no-repeat;
    mask-size: cover;
  }

  .mobile-chart i {
    background: rgba(68, 197, 103, 0.62);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 160'%3E%3Cpath fill='none' stroke='white' stroke-width='7' d='M0 110 C80 90 120 116 190 78 S310 48 378 74 S500 122 570 76 S660 62 700 48'/%3E%3C/svg%3E");
  }

  .mobile-chart b {
    background: rgba(223, 101, 71, 0.62);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 160'%3E%3Cpath fill='none' stroke='white' stroke-width='7' d='M0 118 C90 94 156 134 230 112 S338 78 424 112 S530 148 610 116 S672 110 700 124'/%3E%3C/svg%3E");
  }

  .mobile-amount {
    display: grid;
    gap: 8px;
    margin: 14px 0 12px;
    color: rgba(246, 242, 232, 0.68);
    font-size: 0.86rem;
  }

  .mobile-amount input {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-stats-panel {
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(8, 7, 4, 0.32), rgba(8, 7, 4, 0.94)),
      url("./assets/players-banner-wide.png") no-repeat center top / cover;
  }

  .mobile-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 130px;
  }

  .mobile-stats article {
    padding: 14px 10px;
    border: 1px solid rgba(255, 199, 47, 0.18);
    border-radius: 12px;
    background: rgba(8, 7, 4, 0.72);
    backdrop-filter: blur(10px);
  }

  .mobile-stats strong {
    display: block;
    color: var(--gold);
    font-size: 1.45rem;
  }

  .mobile-stats span {
    color: rgba(246, 242, 232, 0.68);
    font-size: 0.82rem;
  }

  .mobile-feature-list {
    display: grid;
    gap: 10px;
  }

  .mobile-feature-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .mobile-feature-list strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #1c1400;
    background: var(--gold);
  }

  .mobile-feature-list h3 {
    margin: 0 0 5px;
    font-size: 1rem;
  }

  .mobile-feature-list p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
  }

  .mobile-final {
    min-height: 360px;
    display: grid;
    align-content: end;
    gap: 12px;
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(8, 7, 4, 0.12), rgba(8, 7, 4, 0.96) 72%),
      url("./assets/trophy-banner.png") no-repeat center top / cover;
  }

  .mobile-final .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .mobile-landing {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mobile-hero-bg {
    background:
      linear-gradient(180deg, rgba(8, 7, 4, 0.95) 0%, rgba(8, 7, 4, 0.72) 36%, rgba(8, 7, 4, 0.12) 58%, rgba(8, 7, 4, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 7, 4, 0.92) 0%, rgba(8, 7, 4, 0.26) 68%, rgba(8, 7, 4, 0.08) 100%),
      url("./assets/hero-mascot.png") no-repeat 64% 77% / auto 59%;
  }

  .mobile-hero-content h1 {
    font-size: 2.42rem;
  }

  .mobile-actions {
    grid-template-columns: 1fr;
    max-width: 220px;
  }

  .mobile-countdown {
    left: 12px;
    right: 12px;
  }

  .mobile-countdown strong {
    font-size: 1.15rem;
  }

  .mobile-section {
    width: min(100vw - 24px, 100%);
  }
}
