:root {
  --bg: #080306;
  --panel: rgba(28, 17, 21, .84);
  --panel-2: rgba(48, 30, 34, .86);
  --text: #fff9ef;
  --muted: #d4c2b2;
  --accent: #f5c842;
  --accent-2: #43d6b4;
  --danger: #ff6b6b;
  --line: rgba(255,255,255,.14);
  --line-strong: rgba(245,200,66,.38);
  --ink: #17080b;
  --shadow: 0 28px 90px rgba(0,0,0,.48);
  --soft-shadow: 0 18px 55px rgba(0,0,0,.3);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 22% 0%, rgba(245,200,66,.16), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(67,214,180,.12), transparent 28%),
    linear-gradient(180deg, #12070a 0%, var(--bg) 44%, #0c0507 100%);
  color: var(--text);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 78%);
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(8,3,6,.78);
  backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(0,0,0,.26);
}
.brand img { display: block; width: 190px; height: auto; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.burger { display: none; }
.site-nav { display: flex; gap: 18px; flex: 1; justify-content: center; }
.site-nav a, .footer-links a, .inline-link { color: var(--muted); text-decoration: none; font-weight: 760; }
.site-nav a {
  position: relative;
  padding: 9px 2px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform .22s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a:hover, .footer-links a:hover, .inline-link:hover { color: var(--accent); }
.head-actions { display: flex; align-items: center; gap: 10px; }
.lang-menu {
  position: relative;
  z-index: 14;
}
.lang-menu summary {
  list-style: none;
  cursor: pointer;
}
.lang-menu summary::-webkit-details-marker { display: none; }
.lang-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  min-width: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.045);
  font-weight: 860;
}
.lang-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}
.lang-menu[open] summary::after { transform: translateY(2px) rotate(225deg); }
.lang-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 104px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10,4,6,.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(150%);
}
.lang-options a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 860;
}
.lang-options a:hover {
  background: rgba(245,200,66,.12);
  color: var(--accent);
}
.btn, .mobile-cta-bar a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.3);
  background: linear-gradient(135deg, #ffe37a 0%, var(--accent) 40%, #ff9d18 100%);
  color: #1e1100;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(245,200,66,.24), inset 0 1px 0 rgba(255,255,255,.58);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover, .mobile-cta-bar a:hover { transform: translateY(-2px); box-shadow: 0 24px 48px rgba(245,200,66,.32), inset 0 1px 0 rgba(255,255,255,.62); }
.btn.secondary {
  background: rgba(255,255,255,.06);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  border-color: var(--line);
}
.btn-small { min-height: 42px; padding: 0 16px; }
main { overflow: hidden; }
section {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 66px clamp(16px, 4vw, 56px);
}
main > section:not(.hero):not(.page-hero) + section:not(.hero):not(.page-hero) {
  border-top: 1px solid rgba(255,255,255,.065);
}
.hero, .page-hero {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .56fr);
  align-items: center;
  gap: 42px;
  background:
    linear-gradient(135deg, rgba(8,3,6,.96), rgba(25,9,12,.94) 46%, rgba(12,5,7,.98)),
    radial-gradient(circle at 82% 16%, rgba(245,200,66,.16), transparent 34%),
    radial-gradient(circle at 18% 80%, rgba(67,214,180,.12), transparent 28%);
}
.hero {
  min-height: calc(100vh - 82px);
  padding-top: 78px;
  padding-bottom: 78px;
}
.page-hero {
  min-height: 460px;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(245,200,66,.42), rgba(67,214,180,.34), transparent);
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 900;
  margin: 0 0 14px;
  padding: 7px 11px;
  border: 1px solid rgba(67,214,180,.28);
  border-radius: 999px;
  background: rgba(67,214,180,.07);
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 18px; }
h1 {
  font-size: clamp(42px, 5.2vw, 74px);
  max-width: 940px;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 56px rgba(0,0,0,.54);
}
h2 {
  font-size: clamp(29px, 3vw, 42px);
  letter-spacing: 0;
  text-wrap: balance;
}
h3 { font-size: 20px; }
p { color: var(--muted); margin: 0 0 18px; max-width: 900px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-visual {
  position: relative;
  align-self: center;
  width: min(100%, 560px);
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.hero-visual.compact { width: min(100%, 500px); }
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(78%, 340px);
  padding: 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(10,4,6,.72);
  backdrop-filter: blur(16px) saturate(145%);
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
}
.offer-card span, .offer-card small { display: block; color: var(--muted); font-weight: 760; }
.offer-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.08;
  margin: 4px 0 6px;
  text-wrap: balance;
}
.trust-pills {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 78%;
}
.trust-pills span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff8ec;
  border: 1px solid rgba(255,255,255,.15);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}
.facts {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.028));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.facts th, .facts td {
  text-align: left;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  vertical-align: top;
}
.facts tr:last-child th, .facts tr:last-child td { border-bottom: 0; }
.facts th {
  width: 260px;
  color: var(--accent);
  background: rgba(245,200,66,.045);
}
.facts td { color: #eadccf; }
.game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.game-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.028));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  box-shadow: var(--soft-shadow);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.game-card:focus-visible { outline: 3px solid rgba(245,200,66,.7); outline-offset: 3px; }
.game-card:hover { transform: translateY(-5px); border-color: rgba(245,200,66,.42); box-shadow: 0 26px 70px rgba(0,0,0,.42); }
.game-card img { width: 100%; aspect-ratio: 226 / 338; height: auto; object-fit: cover; display: block; background: #070304; }
.game-card div { padding: 14px; }
.game-card p { font-size: 14px; margin: 0; }
.game-card span { margin: 0 14px 14px; min-height: 42px; display: grid; place-items: center; border-radius: 8px; text-decoration: none; background: rgba(67,214,180,.13); color: var(--accent-2); font-weight: 900; border: 1px solid rgba(67,214,180,.18); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span { border: 1px solid var(--line); background: rgba(255,255,255,.05); border-radius: 999px; padding: 9px 13px; color: var(--muted); font-weight: 780; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.cards article, .faq details {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--soft-shadow);
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq { display: grid; gap: 10px; }
.faq summary { cursor: pointer; font-weight: 850; color: var(--text); }
.faq p { margin: 12px 0 0; }
.steps {
  display: grid;
  gap: 12px;
  color: var(--muted);
  padding-left: 22px;
}
.steps li::marker { color: var(--accent); font-weight: 900; }
.footer {
  border-top: 1px solid var(--line);
  padding: 46px clamp(16px, 4vw, 56px) 96px;
  background: linear-gradient(180deg, #0d0507, #050203);
}
.footer img { max-width: 210px; height: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0; }
.mobile-cta-bar { display: none; }
@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    gap: 10px;
    padding: 10px 14px;
    justify-content: space-between;
  }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand img { width: 150px; max-width: 48vw; }
  .burger {
    order: 3;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
    cursor: pointer;
  }
  .burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2.5px 0;
    border-radius: 999px;
    background: var(--text);
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-toggle:checked + .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked + .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked + .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    order: 5;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10,4,6,.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(150%);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    color: var(--text);
  }
  .site-nav a::after { display: none; }
  .head-actions { order: 2; flex: 0 0 auto; gap: 8px; }
  .head-actions .btn-small { display: none; }
  .lang-menu summary {
    min-width: 46px;
    min-height: 46px;
    padding: 0;
  }
  .lang-options { right: -2px; }
  .hero, .page-hero { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: auto; padding-top: 54px; padding-bottom: 54px; }
  .page-hero { min-height: auto; padding-top: 48px; padding-bottom: 48px; }
  .hero-visual, .hero-visual.compact { width: 100%; margin: 0; aspect-ratio: 16 / 10; }
  .offer-card { position: static; width: auto; margin: 12px; }
  .trust-pills { position: static; justify-content: flex-start; max-width: none; padding: 0 12px 12px; }
  h1 { font-size: 42px; }
  h2 { font-size: 28px; }
  section { padding-left: 16px; padding-right: 16px; }
  .hero-actions .btn { width: 100%; }
  .game-grid, .cards, .split { grid-template-columns: 1fr; }
  .facts th, .facts td { display: block; width: 100%; }
  .mobile-cta-bar { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 12; padding: 10px 14px; background: rgba(8,4,5,.92); border-top: 1px solid var(--line); backdrop-filter: blur(18px); }
  .mobile-cta-bar a { width: 100%; }
}
@media (max-width: 460px) {
  .brand img { width: 132px; }
  h1 { font-size: 36px; }
  h2 { font-size: 25px; }
  .eyebrow { max-width: 100%; font-size: 10px; white-space: normal; }
  .hero, .page-hero { padding-top: 38px; padding-bottom: 38px; }
  .offer-card strong { font-size: 24px; }
  .trust-pills span { font-size: 11px; padding: 7px 9px; }
}
