:root {
  --ink: #120f0d;
  --ink-soft: #1d1714;
  --panel: #251c17;
  --panel-light: #33251d;
  --cream: #fff7dc;
  --muted: #d7c8b7;
  --line: rgba(255, 227, 63, .24);
  --yellow: #ffe33f;
  --orange: #f7951d;
  --red: #d44828;
  --purple: #6f3bc0;
  --shell: 1240px;
  --radius: 26px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cream);
  background:
    linear-gradient(rgba(18, 15, 13, .94), rgba(18, 15, 13, .97)),
    url("assets/brand/desert-road.webp") center top / cover fixed;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.72;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(var(--shell), 100%); margin-inline: auto; padding-inline: clamp(18px, 3vw, 38px); }
.skip-link { position: fixed; z-index: 1000; left: 12px; top: -80px; padding: 10px 16px; color: #111; background: var(--yellow); border-radius: 12px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(16, 12, 10, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 22px; }
.brand { width: 148px; flex: 0 0 auto; }
.brand img { width: 100%; height: 66px; object-fit: contain; }
.locale { display: flex; align-items: center; gap: 11px; white-space: nowrap; }
.pl-mark {
  width: 34px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(to bottom, #fff 0 50%, #dc143c 50% 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 4px 10px rgba(0,0,0,.35);
  transform: skewX(-5deg);
}
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 28px); margin-left: auto; }
.main-nav a { position: relative; font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 3px; background: var(--yellow); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; gap: 10px; }
.nav-toggle, .nav-burger { display: none; }

.button, .cta a, .cta-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 25px;
  color: #17110c;
  background: linear-gradient(180deg, #fff36b, var(--yellow) 58%, #f5b70d);
  border: 2px solid #17110c;
  border-radius: 999px 999px 80% 92%;
  box-shadow: 0 5px 0 #9e5a04, 0 13px 24px rgba(0,0,0,.25);
  font-weight: 1000;
  line-height: 1.15;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button:hover, .cta a:hover, .cta-row a:hover { transform: translateY(-2px) rotate(-.4deg); filter: saturate(1.12); box-shadow: 0 7px 0 #9e5a04, 0 15px 28px rgba(0,0,0,.3); }
.button:active, .cta a:active, .cta-row a:active { transform: translateY(3px); box-shadow: 0 2px 0 #9e5a04; }
.button-ghost { color: var(--cream); background: var(--panel); border-color: var(--orange); box-shadow: 0 4px 0 #7b321b; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 25%, rgba(247,149,29,.17), transparent 36%),
    radial-gradient(circle at 82% 45%, rgba(111,59,192,.18), transparent 38%),
    linear-gradient(180deg, rgba(25,18,14,.95), rgba(18,15,13,.72));
  border-bottom: 1px solid var(--line);
}
.hero::after { content: ""; position: absolute; z-index: -1; pointer-events: none; }
.hero::after { width: 360px; height: 360px; right: -90px; top: 16%; border: 28px solid rgba(212,72,40,.09); border-radius: 50%; }
.hero-copy { padding-top: 76px; padding-bottom: 72px; text-align: center; }
h1, h2, h3, h4 { margin: 0 0 20px; color: var(--cream); font-family: "Arial Black", "Trebuchet MS", sans-serif; line-height: 1.16; letter-spacing: -.035em; }
h1 { width: 100%; max-width: none; font-size: clamp(42px, 5vw, 68px); text-align: center; text-wrap: balance; }
h2 { max-width: none; font-size: clamp(31px, 4vw, 50px); }
h3 { margin-top: 34px; font-size: clamp(23px, 2.8vw, 31px); }
h4 { font-size: 21px; }
p { margin: 0 0 20px; color: var(--muted); }
.hero-lead, .hero-sub { max-width: none; margin-inline: auto; color: #eee2d2; font-size: 20px; }
.hero-visual, .brand-visual { margin: 38px auto 34px; }
.hero-visual {
  position: relative;
  max-width: 1080px;
  padding: 5px;
  background: linear-gradient(120deg, var(--yellow), var(--orange), var(--purple), var(--yellow));
  border-radius: 31px;
  box-shadow: 0 34px 70px rgba(0,0,0,.42);
}
.hero-visual img { width: 100%; height: auto; aspect-ratio: 1280 / 900; object-fit: contain; background: #0b0908; border-radius: 26px; }
figcaption { padding: 11px 14px 2px; color: rgba(215,200,183,.7); font-size: 13px; line-height: 1.45; text-align: center; }
.facts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(110px, auto);
  gap: 12px;
  margin: 34px 0;
  padding: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(27,19,16,.97), rgba(50,27,31,.96));
  border: 1px solid rgba(255,227,63,.3);
  border-radius: 30px 16px 30px 16px;
  box-shadow: 0 26px 62px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.04);
  isolation: isolate;
}
.facts::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image: radial-gradient(circle, rgba(255,227,63,.52) 0 1px, transparent 1.5px);
  background-size: 15px 15px;
  mask-image: linear-gradient(115deg, transparent 10%, #000 46%, transparent 82%);
}
.fact {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 6px;
  margin: 0;
  padding: 20px;
  overflow: hidden;
  color: #fff6e5;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 21px 12px 21px 12px;
  text-align: left;
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 12px 24px rgba(0,0,0,.18);
  isolation: isolate;
}
.fact::before, .fact::after { content: ""; position: absolute; z-index: -1; pointer-events: none; }
.fact::before { width: 120px; height: 120px; right: -54px; bottom: -64px; border: 18px solid rgba(255,255,255,.08); border-radius: 50%; }
.fact-kicker { color: #fff2bd; font-family: "Arial Black", sans-serif; font-size: 10px; line-height: 1.2; letter-spacing: .13em; text-transform: uppercase; }
.fact strong { display: block; color: var(--yellow); font-family: "Arial Black", sans-serif; font-size: clamp(21px, 2.2vw, 30px); line-height: 1.03; letter-spacing: -.035em; overflow-wrap: normal; }
.fact-copy { color: rgba(255,246,229,.76); font-size: 13px; line-height: 1.35; }
.fact-bonus { grid-column: span 5; grid-row: span 2; min-height: 232px; padding: 26px 42% 24px 24px; background: radial-gradient(circle at 88% 35%, rgba(175,42,239,.4), transparent 38%), linear-gradient(145deg, #542170, #2b183f 58%, #1c1719); border-color: rgba(255,227,63,.45); }
.fact-bonus strong { max-width: 210px; font-size: clamp(27px, 3.1vw, 43px); }
.fact-bonus img { position: absolute; right: -3%; bottom: -13%; z-index: -1; width: 49%; height: auto; aspect-ratio: 1; object-fit: cover; object-position: center; border: 5px solid rgba(255,227,63,.84); border-radius: 50%; box-shadow: 0 0 0 8px rgba(104,29,152,.34), 0 18px 30px rgba(0,0,0,.34); transform: rotate(4deg); }
.fact-bonus::after { inset: 0; background: linear-gradient(90deg, rgba(26,17,24,.96) 0 38%, rgba(26,17,24,.52) 58%, transparent 78%); }
.fact-deposit { grid-column: span 3; background: linear-gradient(145deg, #5c2d0f, #a34516); }
.fact-deposit::after { width: 72px; height: 72px; top: -24px; right: 18px; border: 12px solid rgba(255,227,63,.22); border-radius: 50%; }
.fact-withdrawal { grid-column: span 4; background: linear-gradient(135deg, #5a1630, #8b254c 56%, #3e1826); }
.fact-withdrawal::after { inset: 0; background: repeating-linear-gradient(135deg, transparent 0 20px, rgba(255,255,255,.04) 20px 24px); }
.fact-time { grid-column: span 3; background: linear-gradient(145deg, #162f52, #265d84); }
.fact-time::after { inset: -40% -20%; background: repeating-radial-gradient(circle at 100% 50%, transparent 0 18px, rgba(255,255,255,.05) 19px 21px); }
.fact-tournament { grid-column: span 4; background: linear-gradient(135deg, #381b54, #6f2ea8 60%, #2a173e); border-color: rgba(255,186,31,.42); }
.fact-tournament::after { width: 84px; height: 84px; right: 18px; bottom: -35px; background: radial-gradient(circle, var(--orange) 0 27%, transparent 29%), conic-gradient(from 22deg, var(--yellow), var(--orange), var(--yellow)); clip-path: polygon(50% 0,61% 33%,98% 22%,70% 50%,98% 78%,61% 67%,50% 100%,39% 67%,2% 78%,30% 50%,2% 22%,39% 33%); opacity: .62; }
.cta-row, .cta { margin: 31px 0 10px; text-align: center; }

.platform-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding-top: 48px; padding-bottom: 34px; }
.platform-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  min-height: 164px;
  overflow: hidden;
  padding: 20px 55px 20px 18px;
  background: #1b1613;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 25px 14px 25px 14px;
  isolation: isolate;
  box-shadow: 0 16px 32px rgba(0,0,0,.28);
  transition: transform .23s ease, box-shadow .23s ease, border-color .23s ease;
}
.platform-card::before { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .95; }
.platform-card::after { content: ""; position: absolute; z-index: -1; width: 145px; height: 145px; left: -36px; top: 50%; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.07); border-radius: 50%; transform: translateY(-50%); }
.platform-bonus::before { background: radial-gradient(circle at 0 50%, rgba(255,219,47,.22), transparent 37%), linear-gradient(115deg,#4e2818,#211713 72%); }
.platform-slots::before { background: radial-gradient(circle at 0 50%, rgba(132,62,205,.3), transparent 37%), linear-gradient(115deg,#382154,#1e171f 72%); }
.platform-tables::before { background: radial-gradient(circle at 0 50%, rgba(46,156,224,.25), transparent 37%), linear-gradient(115deg,#163d52,#17191d 72%); }
.platform-tournaments::before { background: radial-gradient(circle at 0 50%, rgba(247,149,29,.28), transparent 37%), linear-gradient(115deg,#573018,#201713 72%); }
.platform-vip::before { background: radial-gradient(circle at 0 50%, rgba(209,47,72,.28), transparent 37%), linear-gradient(115deg,#56222c,#21161a 72%); }
.platform-providers::before { background: radial-gradient(circle at 0 50%, rgba(255,208,74,.18), transparent 37%), linear-gradient(115deg,#3c3424,#1b1915 72%); }
.platform-copy { display: grid; gap: 6px; }
.platform-copy small { color: var(--yellow); font-size: 10px; font-weight: 1000; line-height: 1; letter-spacing: .14em; text-transform: uppercase; }
.platform-copy strong { font-family: "Arial Black", sans-serif; font-size: 21px; line-height: 1.1; }
.platform-copy > span { max-width: 210px; color: var(--muted); font-size: 12px; line-height: 1.3; }
.platform-icon { position: relative; z-index: 1; display: grid; width: 90px; height: 104px; place-items: center; }
.platform-icon img { display: block; width: 88px; height: 88px; object-fit: contain; filter: drop-shadow(0 10px 10px rgba(0,0,0,.36)); }
.platform-arrow { position: absolute; right: 16px; bottom: 16px; display: grid; width: 34px; height: 34px; place-items: center; color: #17110c; background: linear-gradient(135deg,var(--yellow),var(--orange)); border-radius: 10px 5px 10px 5px; font-size: 21px; font-weight: 1000; line-height: 1; transform: skew(-5deg); transition: transform .2s ease; }
.platform-card:hover { transform: translateY(-4px); border-color: rgba(255,225,65,.38); box-shadow: 0 23px 42px rgba(0,0,0,.36); }
.platform-card:hover .platform-arrow { transform: skew(-5deg) translateX(4px); }

.games-strip { padding-top: 54px; padding-bottom: 76px; }
.games-strip-head { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 23px; }
.games-strip-head > div { display: grid; gap: 2px; }
.games-strip-head small { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.games-strip-head strong { font-family: "Arial Black", sans-serif; font-size: clamp(27px, 3.2vw, 40px); line-height: 1.18; }
.games-strip-head > a { color: var(--yellow); font-weight: 900; white-space: nowrap; }
.games-row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 17px; }
.game-card { position: relative; aspect-ratio: 1; overflow: hidden; background: #1a1512; border-radius: 22px 14px 22px 14px; box-shadow: 0 13px 26px rgba(0,0,0,.28); }
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, filter .3s ease; }
.game-shade { position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(10,7,6,.93)); }
.game-copy { position: absolute; inset: auto 13px 12px; display: grid; line-height: 1.14; }
.game-copy small { color: var(--yellow); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.game-copy strong { margin-top: 3px; font-size: 15px; }
.game-card:hover img { transform: scale(1.07); filter: saturate(1.14); }

.article { padding-bottom: 70px; }
.toc { margin: 0 0 48px; overflow: hidden; background: linear-gradient(135deg, rgba(46,31,23,.98), rgba(25,20,17,.98)); border: 1px solid var(--line); border-radius: var(--radius); }
.toc summary { position: relative; display: flex; align-items: center; gap: 15px; padding: 23px 76px 23px 27px; cursor: pointer; color: var(--cream); font-family: "Arial Black", sans-serif; font-size: 26px; list-style: none; }
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after { content: ""; position: absolute; right: 28px; top: 50%; width: 15px; height: 15px; border-right: 4px solid var(--yellow); border-bottom: 4px solid var(--yellow); transform: translateY(-68%) rotate(45deg); transition: transform .2s ease; }
.toc[open] summary::after { transform: translateY(-28%) rotate(225deg); }
.toc-icon { display: inline-grid; width: 44px; height: 44px; place-items: center; color: #18120e; background: var(--yellow); border-radius: 14px 9px 14px 9px; font-size: 29px; line-height: 1; }
.toc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 28px; margin: 0; padding: 0 28px 28px; list-style: none; counter-reset: toc; }
.toc-list a { display: grid; grid-template-columns: 38px 1fr; align-items: start; gap: 9px; padding: 8px 4px; color: var(--muted); line-height: 1.35; border: 0; transition: color .2s ease, transform .2s ease; }
.toc-list a span { color: var(--orange); font-weight: 900; }
.toc-list a:hover { color: var(--cream); transform: translateX(4px); }

.content-section { position: relative; margin: 0 0 26px; padding: clamp(34px, 5vw, 64px); overflow: hidden; background: rgba(34,26,22,.92); border: 1px solid rgba(255,227,63,.16); border-radius: 30px 20px 30px 20px; }
.content-section::before { content: attr(data-section); position: absolute; right: 25px; top: 14px; color: rgba(255,227,63,.14); font-family: "Arial Black", sans-serif; font-size: 50px; line-height: 1; }
.content-section::after { content: ""; position: absolute; left: 0; top: 0; width: 96px; height: 8px; background: linear-gradient(90deg, var(--yellow), var(--orange)); border-radius: 0 8px 8px 0; }
.content-section > * { position: relative; z-index: 1; }
.content-section > h2 { padding-right: 55px; }
.content-section ul, .content-section ol { margin: 18px 0 25px; padding-left: 25px; color: var(--muted); }
.content-section li { margin-bottom: 10px; padding-left: 5px; }
.content-section li::marker { color: var(--orange); font-weight: 900; }
.brand-visual { max-width: 1060px; }
.brand-visual img { width: 100%; height: auto; aspect-ratio: 1280 / 900; object-fit: contain; background: #120f0d; border: 5px solid transparent; border-radius: 27px; background-image: linear-gradient(#120f0d,#120f0d), linear-gradient(120deg,var(--yellow),var(--orange),var(--purple)); background-origin: border-box; background-clip: padding-box,border-box; box-shadow: 0 24px 48px rgba(0,0,0,.32); }
.note, .warning, .tip, .info { position: relative; margin: 26px 0; padding: 22px 24px 22px 74px; color: var(--muted); background: linear-gradient(120deg, rgba(111,59,192,.16), rgba(247,149,29,.09)); border: 1px solid rgba(255,227,63,.22); border-radius: 20px 13px 20px 13px; }
.note::before, .warning::before, .tip::before, .info::before { content: "!"; position: absolute; left: 21px; top: 22px; display: grid; width: 34px; height: 34px; place-items: center; color: #17110c; background: var(--yellow); border-radius: 50%; font-weight: 1000; }

table { width: 100%; margin: 26px 0 33px; overflow: hidden; border-collapse: separate; border-spacing: 0; background: rgba(14,11,9,.48); border: 1px solid var(--line); border-radius: 20px; }
caption { padding: 17px 19px; color: var(--yellow); background: rgba(17,13,11,.82); font-family: "Arial Black", sans-serif; text-align: left; }
th, td { padding: 15px 17px; border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; vertical-align: top; overflow-wrap: anywhere; }
th { color: var(--cream); background: rgba(247,149,29,.12); font-size: 15px; }
td { color: var(--muted); }
tr:last-child td { border-bottom: 0; }
th:last-child, td:last-child { border-right: 0; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { background: rgba(15,12,10,.64); border: 1px solid rgba(255,227,63,.16); border-radius: 18px 12px 18px 12px; }
.faq-list summary { position: relative; padding: 21px 55px 21px 22px; cursor: pointer; color: var(--cream); font-weight: 900; line-height: 1.35; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; color: var(--yellow); font-size: 29px; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 21px; }
.faq-answer p { margin: 0; }
.faq-section .cta { margin-top: 36px; }

.reviews { padding-top: 16px; padding-bottom: 86px; }
.section-heading > span { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.reviews-summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 26px 0 22px; padding: 25px 28px; background: var(--panel); border: 1px solid var(--line); border-radius: 24px 16px 24px 16px; }
.reviews-summary > div { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; }
.reviews-summary strong { color: var(--yellow); font-family: "Arial Black", sans-serif; font-size: 42px; line-height: 1; }
.stars { color: var(--yellow); letter-spacing: 3px; }
.stars i { color: #66584d; font-style: normal; }
.reviews-summary small { color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { display: flex; min-width: 0; flex-direction: column; padding: 24px; background: rgba(37,28,23,.93); border: 1px solid rgba(255,227,63,.16); border-radius: 24px 15px 24px 15px; }
.review-card header { display: flex; align-items: center; gap: 13px; }
.avatar { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; color: #1b130e; background: linear-gradient(135deg,var(--yellow),var(--orange)); border-radius: 50%; font-weight: 1000; }
.review-card header div { display: grid; line-height: 1.3; }
.review-card header small { color: var(--muted); }
.review-card .stars { margin: 17px 0 11px; }
.review-card p { flex: 1; font-size: 16px; line-height: 1.62; }
.review-card footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--orange); font-size: 12px; }
.review-card footer button { padding: 0; color: var(--muted); background: none; border: 0; cursor: pointer; }

.site-footer { position: relative; background: #0c0908; border-top: 1px solid var(--line); }
.footer-accent { height: 8px; background: repeating-linear-gradient(120deg,var(--yellow) 0 28px,var(--orange) 28px 56px,var(--red) 56px 84px,var(--purple) 84px 112px); }
.footer-main { display: grid; grid-template-columns: 1fr 1.25fr 1.2fr; gap: 34px; padding-top: 56px; padding-bottom: 34px; }
.footer-main section h2 { margin-bottom: 15px; font-size: 22px; }
.footer-main nav { display: grid; gap: 7px; }
.footer-main nav a, .help-link { color: var(--muted); font-size: 15px; }
.footer-main nav a:hover, .help-link:hover { color: var(--yellow); }
.footer-main p { margin-bottom: 8px; font-size: 15px; line-height: 1.55; }
.support-mail { display: block; margin: 2px 0 13px; color: var(--yellow); overflow-wrap: anywhere; font-weight: 900; }
.socials { margin-top: 16px; }
.socials a { display: grid; width: 46px; height: 46px; place-items: center; background: var(--panel); border-radius: 15px 10px 15px 10px; }
.store-buttons { display: flex; gap: 10px; }
.store-buttons a { display: flex; min-width: 0; flex: 1; align-items: center; gap: 8px; padding: 10px 12px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px 10px 16px 10px; line-height: 1.15; }
.store-buttons small { display: block; color: var(--muted); font-size: 10px; }
.payment-logos { display: flex; align-items: center; gap: 19px; margin-top: 22px; opacity: .82; }
.responsible { grid-column: 1 / -1; display: flex; align-items: center; gap: 17px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.age { display: grid; width: 62px; height: 62px; flex: 0 0 auto; place-items: center; border: 4px solid var(--yellow); border-radius: 50%; font-family: "Arial Black", sans-serif; }
.responsible strong { color: var(--cream); }
.responsible p { margin: 3px 0 0; }
.footer-bottom { display: flex; gap: 22px; padding-top: 18px; padding-bottom: 32px; color: rgba(215,200,183,.63); border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; }
.footer-bottom span { margin-right: auto; }

.back-to-top { position: fixed; z-index: 80; right: 22px; bottom: 24px; display: grid; width: 58px; height: 58px; place-items: center; cursor: pointer; opacity: 0; pointer-events: none; color: #17110c; background: linear-gradient(145deg,var(--yellow),var(--orange)); border: 2px solid #17110c; border-radius: 19px 12px 19px 12px; box-shadow: 0 8px 0 #7b3f08,0 15px 28px rgba(0,0,0,.34); transform: translateY(16px); transition: opacity .2s, transform .2s; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top span { width: 18px; height: 18px; border-top: 5px solid currentColor; border-left: 5px solid currentColor; transform: translateY(4px) rotate(45deg); }
.mobile-actions { display: none; }

.bonus-overlay { position: fixed; z-index: 300; inset: 0; place-items: center; padding: 18px; background: rgba(4,3,2,.78); backdrop-filter: blur(8px); }
.bonus-overlay:not([hidden]) { display: grid; }
.bonus-dialog { position: relative; width: min(760px,100%); overflow: hidden; background: #211813; border: 2px solid rgba(255,227,63,.55); border-radius: 30px 20px 30px 20px; box-shadow: 0 35px 100px rgba(0,0,0,.75); }
.bonus-close { position: absolute; z-index: 3; right: 15px; top: 15px; display: grid; width: 44px; height: 44px; place-items: center; cursor: pointer; color: #17110c; background: var(--yellow); border: 2px solid #17110c; border-radius: 50%; font-size: 28px; line-height: 1; }
.bonus-art { aspect-ratio: 1280 / 301; overflow: hidden; background: #2c177d; }
.bonus-art img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bonus-copy { padding: 29px 36px 34px; text-align: center; }
.bonus-copy > span { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.bonus-copy h2 { margin: 7px 0 13px; font-size: clamp(31px,5vw,47px); }
.bonus-copy p { max-width: 660px; margin-inline: auto; }
.bonus-later { display: block; margin: 18px auto 0; padding: 0; color: var(--muted); background: none; border: 0; cursor: pointer; }

.service-page main { min-height: 62vh; }
.service-copy { padding-top: 70px; padding-bottom: 80px; }
.service-copy article { padding: clamp(30px,5vw,64px); background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.service-copy h1 { text-align: left; font-size: clamp(38px,5vw,66px); }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-actions { margin-left: auto; }
  .platform-links { grid-template-columns: repeat(2,1fr); }
  .platform-card { min-height: 158px; }
  .games-row { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .facts { grid-template-columns: repeat(6,1fr); }
  .fact-bonus { grid-column: span 6; grid-row: auto; min-height: 210px; }
  .fact-deposit, .fact-withdrawal, .fact-time, .fact-tournament { grid-column: span 3; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 79px; }
  body { font-size: 16px; line-height: 1.62; background-attachment: scroll; }
  .shell { padding-inline: 14px; }
  .site-header { position: sticky; }
  .header-inner { min-height: 78px; gap: 12px; }
  .brand { width: 112px; }
  .brand img { height: 58px; }
  .locale { gap: 8px; font-size: 15px; }
  .pl-mark { width: 28px; height: 20px; }
  .header-actions { display: none; }
  .nav-burger { display: grid; width: 44px; height: 44px; margin-left: auto; padding: 10px 6px; align-content: space-between; cursor: pointer; }
  .nav-burger span { height: 4px; background: var(--yellow); border-radius: 99px; }
  .main-nav { position: fixed; top: 78px; left: 0; right: 0; display: grid; gap: 0; padding: 12px 20px 20px; background: rgba(18,15,13,.98); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .22s ease; }
  .main-nav a { padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle:checked ~ .main-nav { transform: none; }
  .hero-copy { padding-top: 20px; padding-bottom: 20px; }
  h1 { font-size: clamp(33px,10.4vw,48px); }
  h2 { font-size: clamp(28px,8.5vw,39px); }
  h3 { font-size: 23px; }
  .hero-lead, .hero-sub { font-size: 16px; }
  .hero-visual { margin: 24px 0 22px; padding: 3px; border-radius: 20px; }
  .hero-visual img { height: auto; object-fit: contain; border-radius: 17px; }
  figcaption { padding-inline: 4px; font-size: 11px; }
  .facts { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: auto; gap: 9px; margin: 24px 0; padding: 9px; border-radius: 21px 12px 21px 12px; }
  .fact { grid-column: span 1; min-width: 0; min-height: 102px; padding: 13px 11px; border-radius: 15px 9px 15px 9px; }
  .fact-bonus { grid-column: 1 / -1; min-height: 156px; padding: 19px 41% 17px 15px; }
  .fact-bonus strong { max-width: 180px; font-size: clamp(25px, 7.2vw, 32px); }
  .fact-bonus img { right: -4%; bottom: -12%; width: 44%; border-width: 3px; box-shadow: 0 0 0 5px rgba(104,29,152,.3), 0 12px 22px rgba(0,0,0,.3); }
  .fact-kicker { font-size: 8px; letter-spacing: .09em; }
  .fact strong { font-size: clamp(18px,5.4vw,23px); }
  .fact-copy { font-size: 10px; line-height: 1.3; }
  .cta-row a, .cta a { max-width: 100%; min-height: 50px; padding-inline: 18px; font-size: 15px; white-space: normal; }
  .platform-links { grid-template-columns: 1fr 1fr; gap: 9px; padding-top: 34px; padding-bottom: 26px; }
  .platform-card { grid-template-columns: 64px minmax(0,1fr); min-height: 142px; padding: 14px 35px 14px 10px; border-radius: 19px 11px 19px 11px; }
  .platform-card::after { left: -44px; width: 108px; height: 108px; }
  .platform-icon { width: 62px; height: 74px; }
  .platform-icon img { width: 60px; height: 60px; }
  .platform-copy { gap: 4px; }
  .platform-copy small { font-size: 8px; letter-spacing: .1em; }
  .platform-copy strong { font-size: 16px; }
  .platform-copy > span { font-size: 10px; line-height: 1.25; }
  .platform-arrow { right: 9px; bottom: 10px; width: 27px; height: 27px; border-radius: 8px 4px 8px 4px; font-size: 17px; }
  .games-strip { padding-top: 28px; padding-bottom: 46px; overflow: hidden; }
  .games-strip-head { align-items: center; gap: 13px; margin-bottom: 17px; }
  .games-strip-head small { font-size: 10px; }
  .games-strip-head strong { font-size: 22px; }
  .games-strip-head > a { max-width: 96px; font-size: 12px; line-height: 1.25; white-space: normal; text-align: right; }
  .games-row { display: flex; gap: 12px; overflow-x: auto; margin-inline: -14px; padding: 0 14px 12px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .games-row::-webkit-scrollbar { display: none; }
  .game-card { width: 188px; flex: 0 0 188px; scroll-snap-align: start; }
  .article { padding-bottom: 44px; }
  .toc { margin-bottom: 24px; border-radius: 20px; }
  .toc summary { padding: 18px 62px 18px 18px; font-size: 23px; }
  .toc summary::after { right: 23px; }
  .toc-list { grid-template-columns: 1fr; gap: 2px; padding: 0 20px 18px; }
  .toc-list a { grid-template-columns: 38px minmax(0,1fr); padding: 7px 0; font-size: 15px; }
  .content-section { margin-bottom: 0; padding: 34px 0; overflow: visible; background: none; border: 0; border-radius: 0; }
  .content-section + .content-section { border-top: 1px solid rgba(255,227,63,.14); }
  .content-section::after { width: 64px; height: 5px; }
  .content-section::before { right: 0; top: 13px; font-size: 37px; }
  .content-section > h2 { padding-right: 28px; }
  .content-section ul, .content-section ol { padding-left: 22px; }
  .brand-visual { margin: 25px 0 23px; }
  .brand-visual img { height: auto; object-fit: contain; border-width: 3px; border-radius: 18px; }
  .brand-visual figcaption { padding-top: 8px; }
  .note, .warning, .tip, .info { padding: 18px 17px 18px 57px; border-radius: 16px; }
  .note::before, .warning::before, .tip::before, .info::before { left: 14px; top: 18px; }
  table { display: table; width: 100%; table-layout: fixed; margin: 22px 0 28px; overflow: hidden; background: rgba(14,11,9,.62); border: 1px solid rgba(255,227,63,.2); border-collapse: separate; border-spacing: 0; border-radius: 15px; }
  table caption { display: table-caption; margin: 0; padding: 13px 11px; border-radius: 15px 15px 0 0; font-size: 15px; line-height: 1.3; }
  table thead { display: table-header-group; }
  table tbody { display: table-row-group; }
  table tr { display: table-row; background: transparent; }
  table th, table td { display: table-cell; min-width: 0; padding: 9px 7px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); font-size: clamp(10px,3.15vw,13px); line-height: 1.35; word-break: normal; overflow-wrap: anywhere; hyphens: auto; }
  table th { color: var(--cream); background: rgba(247,149,29,.14); font-size: clamp(10px,3vw,12px); }
  table td::before { display: none; content: none; }
  table tr:last-child td { border-bottom: 0; }
  table th:last-child, table td:last-child { border-right: 0; }
  table:has(thead th:nth-child(4)) th, table:has(thead th:nth-child(4)) td { padding-inline: 5px; font-size: clamp(9px,2.75vw,11px); }
  .faq-list summary { padding: 18px 48px 18px 17px; }
  .faq-answer { padding: 0 17px 18px; }
  .faq-section .cta { margin-top: 31px; }
  .reviews { padding-bottom: 58px; }
  .reviews-summary { align-items: stretch; flex-direction: column; padding: 19px; }
  .reviews-summary .button { width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 19px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding-top: 38px; padding-bottom: 24px; }
  .footer-main section:first-child { grid-column: 1 / -1; }
  .footer-main section h2 { font-size: 18px; }
  .footer-main nav { grid-template-columns: 1fr 1fr; gap: 5px 13px; }
  .footer-main nav a, .help-link, .footer-main p, .support-mail { font-size: 12px; line-height: 1.4; }
  .store-buttons { flex-direction: column; }
  .store-buttons a { padding: 8px 9px; font-size: 12px; }
  .payment-logos { gap: 10px; margin-top: 14px; }
  .responsible { padding-top: 20px; }
  .responsible p { font-size: 11px; }
  .age { width: 52px; height: 52px; }
  .footer-bottom { flex-wrap: wrap; gap: 6px 15px; padding-bottom: 98px; font-size: 11px; }
  .footer-bottom span { width: 100%; }
  .mobile-actions { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: .86fr 1.14fr; gap: 9px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(14,10,8,.97); border-top: 1px solid var(--line); }
  .mobile-actions a { display: grid; min-width: 0; min-height: 52px; padding: 8px 10px; place-items: center; color: #17110c; background: linear-gradient(180deg,#fff36b,var(--yellow)); border: 2px solid #17110c; border-radius: 16px 12px 16px 12px; font-size: clamp(13px,4vw,17px); font-weight: 1000; line-height: 1; white-space: nowrap; }
  .mobile-actions a:first-child { color: var(--cream); background: var(--panel); border-color: var(--orange); }
  .back-to-top { right: 14px; bottom: 82px; width: 52px; height: 52px; }
  .bonus-overlay { padding: 14px; }
  .bonus-dialog { width: min(88vw,360px); max-height: 78dvh; overflow-y: auto; border-radius: 23px 16px 23px 16px; }
  .bonus-close { right: 8px; top: 8px; width: 36px; height: 36px; border-width: 1px; font-size: 23px; }
  .bonus-art { min-height: 0; }
  .bonus-copy { padding: 17px 16px 19px; }
  .bonus-copy > span { font-size: 10px; letter-spacing: .12em; }
  .bonus-copy h2 { margin: 5px 0 8px; font-size: clamp(24px,7vw,28px); line-height: 1.08; }
  .bonus-copy p { margin-bottom: 13px; font-size: 13px; line-height: 1.42; }
  .bonus-copy .button { width: 100%; min-height: 43px; padding: 9px 15px; font-size: 14px; }
  .bonus-later { margin-top: 10px; font-size: 12px; }
  .service-copy { padding-top: 30px; padding-bottom: 60px; }
  .service-copy article { padding: 24px 16px; background: none; border: 0; }
}

@media (max-width: 390px) {
  .header-inner { gap: 9px; }
  .brand { width: 99px; }
  .locale { font-size: 13px; }
  .pl-mark { width: 25px; height: 18px; }
  h1 { font-size: 32px; }
  .platform-card { grid-template-columns: 56px minmax(0,1fr); min-height: 136px; padding-left: 8px; }
  .platform-icon { width: 54px; }
  .platform-icon img { width: 53px; height: 53px; }
  .platform-copy strong { font-size: 14px; }
  .platform-copy > span { font-size: 9px; }
  .game-card { width: 172px; flex-basis: 172px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main section:first-child { grid-column: auto; }
  .footer-main nav { grid-template-columns: 1fr 1fr; }
  .responsible { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
