:root {
  --bg: #0b0b0d;
  --bg-2: #141418;
  --card: #1a1a20;
  --line: #2c2c34;
  --red: #e30613;
  --red-2: #ff2a36;
  --text: #fff;
  --muted: #a8a8b3;
  --radius: 12px;
  --header-h: 72px;
  --font: Montserrat, "Segoe UI", system-ui, sans-serif;
  --wrap: 1180px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; z-index: 80; background: var(--red); padding: 8px 12px; }
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header-h);
  background: #000;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; gap: 18px;
}
.logo img { height: 36px; width: auto; }
.nav {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 0;
  font-weight: 700; font-size: .88rem;
}
.nav a { opacity: .82; white-space: nowrap; }
.nav a:hover, .nav a.is-on { opacity: 1; color: #fff; }
.header-tools { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.lang { display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.lang a {
  padding: 6px 10px; font-size: .72rem; font-weight: 800; color: var(--muted);
}
.lang a.is-on { background: var(--red); color: #fff; }
.menu-btn {
  display: none; width: 42px; height: 42px; border: 0; border-radius: 8px;
  background: var(--card); color: #fff; cursor: pointer;
}
.overlay { display: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 18px; border-radius: 8px; border: 0;
  font-weight: 800; cursor: pointer; white-space: nowrap;
}
.btn-ghost { background: transparent; border: 1px solid #fff; color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-2); }
.btn-lg { min-height: 52px; padding: 0 28px; font-size: 1.05rem; }

.hero {
  position: relative; min-height: 420px;
  display: grid; place-items: center; text-align: center;
  overflow: hidden; background: #000;
}
.hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
}
.hero-copy { position: relative; z-index: 1; padding: 72px 24px; }
.hero-copy p { margin: 0 0 8px; letter-spacing: .12em; font-weight: 800; text-transform: uppercase; color: #f2f2f2; }
.hero-copy h1 { margin: 0 0 22px; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; }

.pays {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  padding: 16px 24px; background: #101014; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pays span {
  padding: 6px 10px; border-radius: 6px; background: var(--card);
  font-size: .72rem; font-weight: 800; letter-spacing: .04em; color: #ddd;
}

.section { padding: 42px 0; }
.section-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 18px;
}
.section-head h2 { margin: 0; font-size: 1.35rem; }
.more { font-size: .85rem; font-weight: 800; color: var(--muted); }

.grid-5, .grid-4, .grid-2, .grid-why { display: grid; gap: 14px; }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-why { grid-template-columns: 1fr 1fr; }

.game {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--card); border-radius: var(--radius); overflow: hidden;
}
.game-thumb { position: relative; aspect-ratio: 1; overflow: hidden; }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-thumb .tag {
  position: absolute; top: 8px; left: 8px;
  padding: 3px 8px; border-radius: 4px; font-size: .62rem; font-weight: 800;
  background: #128a3c; color: #fff;
}
.game-thumb .tag.ex { background: #6b2bd6; }
.game-name { padding: 0 10px; font-weight: 800; font-size: .82rem; }
.game-prov { padding: 0 10px 12px; color: var(--muted); font-size: .72rem; }

.promo {
  position: relative; min-height: 180px; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end;
}
.promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo div { position: relative; z-index: 1; padding: 18px; background: linear-gradient(transparent, #000c); width: 100%; }
.promo strong { display: block; font-size: 1.15rem; margin-bottom: 10px; }

.banner {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 200px;
  display: grid; place-items: center; text-align: center;
}
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.banner-copy { position: relative; z-index: 1; padding: 36px 20px; }
.banner-copy h2 { margin: 0 0 8px; font-size: 2rem; }
.banner-copy p { margin: 0 0 16px; color: #eee; }

.why { background: var(--bg-2); }
.why-card {
  background: var(--card); border-radius: var(--radius); padding: 22px;
}
.why-card h3 { margin: 0 0 8px; }
.why-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.cta-row { text-align: center; padding: 8px 0 12px; }

.prose h1, .prose h2 { line-height: 1.2; }
.prose p, .prose li { color: #ddd; line-height: 1.65; }
.prose table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: 10px 8px; text-align: left; }
.crumbs { font-size: .8rem; color: var(--muted); margin: 0 0 18px; }
.crumbs ol { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #555; }
.faq details { background: var(--card); border-radius: 8px; padding: 12px 14px; margin-bottom: 8px; }
.faq summary { font-weight: 800; cursor: pointer; }

.footer { background: #000; border-top: 1px solid var(--line); padding: 36px 0 20px; font-size: .85rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
.footer h3 { margin: 0 0 10px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 0 0 6px; }
.legal { margin-top: 22px; color: var(--muted); line-height: 1.55; font-size: .78rem; }
.age { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 2px solid #fff; border-radius: 50%; font-weight: 800; margin-top: 12px; }

@media (max-width: 980px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  body.nav-open .nav {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #111; padding: 18px 24px 24px; z-index: 45;
  }
  .menu-btn { display: grid; place-items: center; }
  body.nav-open .overlay {
    display: block; position: fixed; inset: 0; background: #0008; z-index: 30;
  }
}
@media (max-width: 640px) {
  .grid-5, .grid-4, .grid-2, .grid-why { grid-template-columns: 1fr; }
  .header-tools .btn-ghost { display: none; }
  .wrap { padding-left: 16px; padding-right: 16px; }
}
