:root {
  --ink: #0c1210;
  --felt: #131c17;
  --panel: #1b2620;
  --panel-2: #223129;
  --brass: #d4a017;
  --brass-soft: #e8c56a;
  --ivory: #f4ecda;
  --paper: #efe4cb;
  --mute: #9d9688;
  --coral: #e24b35;
  --coral-d: #b83624;
  --teal: #2a7d70;
  --line: rgba(212, 160, 23, 0.26);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Sora", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(42, 125, 112, 0.18), transparent 50%),
    radial-gradient(900px 420px at 100% 0%, rgba(226, 75, 53, 0.12), transparent 46%),
    var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.04) 1px, transparent 1px);
  background-size: 100% 28px, 42px 100%;
  mix-blend-mode: overlay;
}

::selection { background: var(--brass); color: #1a1404; }
a { color: var(--brass-soft); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; }
.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }

.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--brass);
  color: #1a1404;
  padding: 10px 14px;
  z-index: 80;
}
.skip:focus { top: 12px; }

.ticker {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0a100d;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  min-height: 42px;
}
.ticker-label {
  flex: 0 0 auto;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 6px 12px;
  margin-left: 10px;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--paper);
}
.ticker-track b { color: var(--brass-soft); font-weight: 600; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(12, 18, 16, 0.86);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap,
.topbar-inner { position: relative; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--brass);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--brass);
  background: #18241d;
  letter-spacing: -0.04em;
}
.brand strong { display: block; font-size: 18px; letter-spacing: 0.08em; }
.brand small { display: block; color: var(--mute); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 14px;
}
.nav a:hover { color: var(--brass-soft); }

.cta-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-enter {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(226, 75, 53, 0.55);
  animation: pulse 1.8s ease-out infinite;
}
.btn-join {
  background: var(--brass);
  color: #1a1404;
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(226, 75, 53, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(226, 75, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 75, 53, 0); }
}

.lang {
  display: flex;
  gap: 6px;
  font-size: 12px;
}
.lang a {
  color: var(--mute);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
}
.lang a[aria-current="page"] {
  color: #1a1404;
  background: var(--brass);
}

.hero {
  position: relative;
  padding: 42px 0 28px;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 12px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-soft);
}
.lede {
  font-size: 18px;
  color: #ddd4c0;
  max-width: 58ch;
  margin: 0 0 22px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--mute);
  font-size: 13px;
}
.live-card {
  background:
    linear-gradient(160deg, rgba(212,160,23,0.12), transparent 40%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.live-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -50px;
  border: 18px solid rgba(212,160,23,0.08);
  border-radius: 50%;
}
.live-card h2 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 8px 0 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #b8f0c8;
}
.badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ad07a;
  display: inline-block;
  animation: blink 1.4s infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }
.live-card .addr {
  display: block;
  background: #0f1713;
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--brass-soft);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 14px;
  margin-bottom: 10px;
  word-break: break-all;
  position: relative;
  z-index: 1;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--mute);
  margin: 8px 0 0;
}
.crumbs a { color: var(--mute); }

.rail {
  margin: 10px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.slider {
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  gap: 14px;
  animation: slide 32s linear infinite;
}
.slider:hover .slider-track { animation-play-state: paused; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.chip {
  flex: 0 0 auto;
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}
.chip span { display: block; color: var(--mute); font-size: 12px; }
.chip strong { font-family: var(--serif); font-size: 20px; }

section { padding: 56px 0; position: relative; z-index: 1; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 24px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
  line-height: 1.15;
}
.section-head p { margin: 0; color: var(--mute); max-width: 46ch; }

.article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 40px);
  margin-bottom: 22px;
}
.article header { margin-bottom: 18px; }
.article h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 8px;
}
.byline { color: var(--mute); font-size: 13px; }
.article p { color: #e8dfcc; }
.article h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 28px 0 10px;
}
.drop::first-letter {
  font-family: var(--serif);
  font-size: 58px;
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: var(--brass);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.step {
  background: #121c17;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.04);
}
.step b {
  display: block;
  font-family: var(--mono);
  color: var(--brass);
  margin-bottom: 8px;
}

.table-wrap { overflow-x: auto; margin: 18px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
th, td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
}
th { color: var(--brass-soft); font-weight: 600; }

.games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.game {
  min-height: 180px;
  border-radius: 20px;
  padding: 18px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.game:nth-child(2) { background: linear-gradient(160deg, #2a7d70 0%, #1b2620 65%); }
.game:nth-child(3) { background: linear-gradient(160deg, #8a3a2a 0%, #1b2620 65%); }
.game h3 { margin: 28px 0 8px; font-family: var(--serif); font-size: 26px; }
.game p { margin: 0; color: #e5dcc8; }

.reviews { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 16px; }
.score {
  background: var(--brass);
  color: #1a1404;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
}
.score strong {
  font-family: var(--serif);
  font-size: 72px;
  display: block;
  line-height: 1;
}
.quotes { display: grid; gap: 12px; }
.quote {
  background: var(--panel);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}
.quote footer { color: var(--mute); font-size: 13px; margin-top: 8px; }

.event {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}
.event-date {
  font-family: var(--mono);
  color: var(--brass);
  font-size: 14px;
}

.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 16px;
}
.faq p { margin: 10px 0 0; color: #e5dcc8; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(10, 14, 12, 0.94);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-cta .btn { flex: 1; }

footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 110px;
  color: var(--mute);
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}
footer h2, footer h3 {
  font-family: var(--serif);
  color: var(--ivory);
  margin: 0 0 10px;
}
.legal { font-size: 12px; line-height: 1.6; }

.menu-btn {
  display: none;
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 42px;
  padding: 0 12px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 920px) {
  .hero-grid, .reviews, .steps, .games, .foot-grid, .event {
    grid-template-columns: 1fr;
  }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    background: #121a16;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
  }
  .menu-btn { display: inline-flex; align-items: center; }
  .mobile-cta { display: flex; }
  .hero { padding-top: 24px; }
}

@media (max-width: 640px) {
  .brand small { display: none; }
  .brand strong { font-size: 14px; letter-spacing: 0.04em; }
  .lang { display: none; }
  .section-head { display: block; }
  .topbar .btn { min-height: 40px; padding: 0 12px; font-size: 13px; }
  .topbar-inner {
    min-height: 64px;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .cta-row { flex-wrap: nowrap; }
  .menu-btn { display: none; }
}
