:root {
  --bg: #f7f8f9;
  --card: #fff;
  --ink: #222;
  --muted: #575760;
  --line: #e4e7ee;
  --accent: #35b3db;
  --accent-2: #1e73be;
  --cta: #16a34a;
  --cta-hover: #128a3e;
  --gold: #f5b301;
  --navy: #0e1a2b;
  --max: 1120px;
  --font: "Inter", "Segoe UI", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgb(14 26 43 / .06);
}
.header-inner {
  display: flex; align-items: center; gap: 16px; min-height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); text-decoration: none; flex-shrink: 0;
}
.logo img {
  height: 44px; width: auto;
  background: #0b0b0b; border-radius: 8px; padding: 4px;
}
.logo-copy { display: flex; flex-direction: column; line-height: 1.1; }
.logo-copy strong { font-size: 15px; letter-spacing: .04em; }
.logo-copy small { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .08em; }
.nav { display: flex; margin-left: auto; gap: 4px; }
.nav a {
  color: var(--ink); font-weight: 600; font-size: 14px;
  padding: 10px 12px; border-radius: 8px;
}
.nav a:hover, .nav a.is-active { color: var(--accent-2); background: #eef7fc; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-chip {
  font-size: 12px; font-weight: 700; color: var(--navy);
  border: 1px solid var(--line); border-radius: 6px; padding: 6px 8px;
}
.btn-play {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cta); color: #fff !important;
  font-weight: 800; font-size: 14px; letter-spacing: .04em;
  padding: 10px 16px; border-radius: 8px; text-decoration: none !important;
}
.btn-play:hover { background: var(--cta-hover); }
.btn-play.lg { min-height: 48px; padding: 12px 22px; font-size: 16px; }
.burger {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
}
.burger span { display: block; height: 2px; background: var(--navy); margin: 6px 9px; }
.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--line); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 20px; color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav .btn-play { margin: 12px 20px 16px; }

.hero {
  background: linear-gradient(180deg, #0e1a2b, #16324f);
  color: #fff; padding: 42px 0 36px;
}
.hero h1 {
  margin: 0 0 12px; font-size: clamp(1.6rem, 3.4vw, 2.35rem); line-height: 1.2; color: #fff;
}
.hero .lead { margin: 0 0 18px; max-width: 720px; color: #d7e4f0; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  background: rgb(255 255 255 / .1); border: 1px solid rgb(255 255 255 / .18);
  border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 600;
}
.content { flex: 1; padding: 36px 0 80px; }
.content h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin: 0 0 12px; }
.content h3 { font-size: 1.15rem; margin: 22px 0 8px; }
.content p { margin: 0 0 1rem; color: #2c3140; }
.content ul { padding-left: 18px; }
.content li { margin-bottom: 8px; }
.section { margin-bottom: 40px; }
.intro-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 16px 0 8px;
}
.intro-grid article {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
}
.intro-grid strong { display: block; margin-bottom: 4px; }

.rank-list { display: grid; gap: 12px; }
.rank {
  display: grid;
  grid-template-columns: 48px 92px 1fr auto;
  gap: 14px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 14px;
  text-decoration: none; color: inherit;
}
.rank:hover { border-color: var(--accent); box-shadow: 0 6px 18px rgb(14 26 43 / .08); }
.rank-num {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; background: #eef7fc; color: var(--accent-2);
}
.rank:first-child .rank-num { background: var(--gold); color: #1a1400; }
.rank img {
  width: 92px; height: 48px; object-fit: contain; background: #0b0b0b; border-radius: 8px;
}
.rank h3 { margin: 0 0 2px; font-size: 16px; }
.rank .bonus { color: var(--cta-hover); font-weight: 800; font-size: 14px; }
.rank .meta { font-size: 12px; color: var(--muted); font-weight: 600; }
.rank .side { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }

.table-scroll { overflow-x: auto; margin: 16px 0 8px; }
table { width: 100%; border-collapse: collapse; background: #fff; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
thead th { background: #eef3f7; }
.procon { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.procon article { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.steps { counter-reset: s; list-style: none; padding: 0; }
.steps li {
  position: relative; padding: 12px 12px 12px 52px;
  border-bottom: 1px solid var(--line);
}
.steps li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 8px; top: 12px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.pay-grid { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 16px; }
.pay-grid span {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 12px; font-size: 13px; font-weight: 700;
}
.faq details { border-bottom: 1px solid var(--line); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent-2); }
.faq details[open] summary::after { content: "–"; }
.age-box {
  margin-top: 24px; padding: 16px 18px; background: #fff6f0;
  border: 1px solid #f3d7c4; border-radius: 10px; font-size: 14px;
}
.play-wrap { text-align: center; margin: 18px 0; }

.site-footer {
  background: var(--navy); color: #c9d6e4; padding: 24px 0 18px; flex-shrink: 0;
}
.site-footer a { color: #fff; }
.footer-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-meta { margin-top: 14px; font-size: 13px; color: #8ea0b5; }

.dock { display: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: inline-block; }
  .header-actions .btn-play { display: none; }
  .logo-copy { display: none; }
  .intro-grid, .procon { grid-template-columns: 1fr; }
  .rank { grid-template-columns: 36px 72px 1fr; }
  .rank .side { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  body.menu-open .dock { visibility: hidden; pointer-events: none; }
  .dock {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    background: var(--navy); padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 24px rgb(0 0 0 / .28);
  }
  .dock-bar { display: flex; align-items: center; gap: 12px; min-height: 52px; color: #fff; text-decoration: none !important; }
  .dock-bonus { display: flex; align-items: center; gap: 10px; flex: 1; }
  .dock-eur {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; background: radial-gradient(circle at 30% 30%, #fff4a8, #f5b301);
    color: #1a1400;
  }
  .dock-bonus-text { display: flex; flex-direction: column; line-height: 1.1; }
  .dock-bonus-text strong { font-size: 16px; }
  .dock-bonus-text small { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #b8c8d8; }
  .dock-play {
    flex: 0 0 46%; max-width: 210px; min-height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--cta); color: #fff; font-weight: 800; letter-spacing: .08em; border-radius: 8px;
  }
}
