:root {
  --brand: #ffca3a;
  --brand-dark: #d4a900;
  --purple: #8f7cff;
  --purple-soft: #55518a;
  --bg: #09040f;
  --surface: #07111d;
  --surface-2: #222442;
  --surface-3: #31203c;
  --text: #f8f5fb;
  --muted: #bcb0c7;
  --border: #392743;
  --success: #54d69d;
  --danger: #ff6b78;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
  --radius: 24px;
  --container: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 14%, rgba(143, 124, 255, .12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255, 202, 58, .05), transparent 22%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0 0 1.1rem; color: var(--muted); }
h1, h2, h3, strong { color: var(--text); }
h1, h2, h3 { margin-top: 0; line-height: 1.16; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.035em; }
h3 { font-size: 1.2rem; }
section { scroll-margin-top: 88px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 960px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header { position: relative; z-index: 60; }
.casino-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  width: 215px;
  padding: 28px 18px;
  flex-direction: column;
  border-right: 1px solid #3c2549;
  background: #241632;
}
.brand-logo { display: inline-flex; width: 150px; margin: 0 8px 34px; }
.brand-logo img, .mobile-brand img { width: 100%; height: auto; }
.desktop-nav ul, .mobile-menu ul { margin: 0; padding: 0; list-style: none; }
.desktop-nav li { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.desktop-nav a { display: block; padding: 15px 10px; color: #f3edf6; font-weight: 750; transition: color .2s ease, padding-left .2s ease; }
.desktop-nav a:hover { padding-left: 16px; color: var(--brand); }
.sidebar-note { margin: auto 8px 0; color: #9f8baa; font-size: .72rem; line-height: 1.45; }
.casino-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 215px;
  z-index: 55;
  display: flex;
  min-height: 72px;
  padding: 12px 30px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(9, 4, 15, .95);
  backdrop-filter: blur(16px);
}
.mobile-brand { display: none; width: 140px; }
.casino-search { display: flex; width: min(340px, 42vw); min-height: 42px; padding: 10px 15px; align-items: center; gap: 10px; color: #b9aabd; border: 1px solid #392743; border-radius: 9px; background: #261c2f; font-size: .85rem; }
.casino-search span { color: var(--text); font-size: 1.15rem; }
.header-actions { display: flex; justify-content: flex-end; gap: 10px; }
.casino-topbar .header-actions { margin-left: auto; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #07111d; background: var(--brand); box-shadow: 0 10px 30px rgba(255, 202, 58, .14); }
.button-primary:hover { background: #8fe1c8; box-shadow: 0 15px 38px rgba(255, 202, 58, .23); }
.button-ghost { border-color: var(--border); background: var(--surface); }
.button-ghost:hover { border-color: var(--purple); }
.button-small { min-height: 44px; padding: 10px 18px; }
.button-large { min-height: 58px; padding: 17px 28px; }
.button span { font-size: 1.45em; line-height: .7; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--text); }
.mobile-menu { display: none; }

main, .site-footer { margin-left: 215px; }
main { padding-top: 72px; }

.hero { padding: 26px 0 22px; background: #09040f; }
.hero-inner { display: flex; justify-content: center; }
.hero-card {
  position: relative;
  width: min(100%, 1320px);
  padding: 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid #4b1c61;
  border-radius: 26px;
  background: linear-gradient(108deg, #351050 0%, #4f0a67 48%, #230731 100%);
  box-shadow: var(--shadow);
}
.hero-card::after {
  position: absolute;
  right: -80px;
  bottom: -210px;
  width: 620px;
  height: 620px;
  content: "";
  border-radius: 50%;
  background: rgba(209, 58, 255, .15);
}
.hero-banner-main { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); min-height: 410px; align-items: center; }
.hero-offer-copy { padding: 34px clamp(30px, 5vw, 68px); }
.hero-kicker { display: inline-flex; padding: 6px 10px; margin-bottom: 15px; color: #f7dc54; border: 1px solid rgba(255, 202, 58, .28); border-radius: 999px; background: rgba(9, 4, 15, .28); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { margin-bottom: 8px; font-size: clamp(2.35rem, 4vw, 4.25rem); letter-spacing: -.055em; }
.hero-intro { max-width: 620px; margin-bottom: 18px; color: #d7c8dc; font-size: .95rem; }
.offer-label { display: block; color: #fff; font-size: .8rem; font-weight: 900; letter-spacing: .08em; }
.hero-bonus { display: block; color: var(--brand); font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: .95; letter-spacing: -.06em; }
.hero-spins { display: block; margin: 4px 0 19px; font-size: clamp(1.1rem, 2vw, 1.55rem); }
.hero-offer-copy > small { display: block; margin-top: 12px; color: #ae9bb6; }
.hero .button-large { min-width: 210px; min-height: 50px; padding: 13px 24px; }
.hero-mascot { position: relative; display: grid; min-height: 410px; place-content: center; justify-items: center; overflow: hidden; }
.mascot-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 202, 58, .25), rgba(143, 124, 255, .18) 48%, transparent 72%); }
.mascot-bolt { position: relative; z-index: 2; display: grid; width: 170px; height: 170px; place-items: center; color: #fff5a6; border: 7px solid var(--brand); border-radius: 45% 55% 48% 52%; background: linear-gradient(145deg, #ffca3a, #e88600); box-shadow: 0 22px 60px rgba(0, 0, 0, .34); font-size: 7rem; font-weight: 950; transform: rotate(-7deg); }
.hero-mascot > b { position: relative; z-index: 2; margin-top: 20px; font-size: 1.7rem; letter-spacing: .09em; }
.hero-mascot > small { position: relative; z-index: 2; color: #d8c6dd; font-size: .65rem; letter-spacing: .18em; }
.coin { position: absolute; z-index: 3; display: grid; width: 42px; height: 42px; place-items: center; color: #5a4100; border: 3px solid #ffeb7b; border-radius: 50%; background: #ffc60b; box-shadow: 0 8px 20px rgba(0, 0, 0, .3); font-style: normal; font-weight: 950; }
.coin-one { top: 52px; right: 80px; transform: rotate(18deg); }
.coin-two { bottom: 74px; left: 65px; transform: rotate(-18deg); }
.coin-three { top: 115px; left: 55px; width: 30px; height: 30px; font-size: .7rem; }

.lobby { padding: 28px 0 42px; border-top: 1px solid rgba(255, 255, 255, .04); }
.game-row + .game-row { margin-top: 64px; }
.row-title { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; margin-bottom: 26px; }
.row-title span { height: 1px; background: linear-gradient(90deg, transparent, var(--purple)); }
.row-title span:last-child { background: linear-gradient(90deg, var(--purple), transparent); }
.row-title h3 { margin: 0; font-size: 1.15rem; letter-spacing: .13em; text-transform: uppercase; }
.game-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.game-card { min-width: 0; }
.game-art {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #050307;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.game-art img { width: 100%; height: 100%; object-fit: contain; }
.game-card:hover .game-art { transform: translateY(-4px); border-color: var(--purple); box-shadow: 0 16px 40px rgba(0, 0, 0, .32); }
.play-label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  padding: 7px 12px;
  color: #160b22;
  border-radius: 999px;
  background: var(--brand);
  font-size: .78rem;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}
.game-card:hover .play-label { opacity: 1; transform: translate(-50%, 0); }
.game-card strong { display: block; margin-top: 12px; font-size: .95rem; line-height: 1.35; }
.game-card small { color: var(--muted); }
.lobby-note { max-width: 800px; margin: 38px auto 0; text-align: center; font-size: .92rem; }

.toc-wrap { padding: 50px 0 22px; }
.toc { overflow: hidden; border: 1px solid var(--border); border-left: 4px solid var(--brand); border-radius: 16px; background: var(--surface); }
.toc summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; color: var(--text); font-weight: 900; list-style: none; }
.toc summary::-webkit-details-marker { display: none; }
.toc summary span { color: var(--brand); font-size: .82rem; text-transform: uppercase; }
.toc[open] summary { border-bottom: 1px solid var(--border); }
.toc nav { padding: 20px 34px 24px; }
.toc ol { margin: 0; padding-left: 24px; columns: 2; column-gap: 50px; }
.toc li { margin: 6px 0; break-inside: avoid; }
.toc a { color: var(--muted); }
.toc a:hover { color: var(--brand); }

.content-section { padding: 96px 0; }
.content-section.alternate { border-block: 1px solid rgba(255, 255, 255, .05); background: rgba(38, 22, 50, .55); }
.section-heading { display: grid; grid-template-columns: 64px minmax(0, 820px); gap: 24px; align-items: start; margin-bottom: 42px; }
.section-heading > span { display: grid; width: 54px; height: 54px; place-items: center; color: var(--brand); border: 1px solid rgba(255, 202, 58, .3); border-radius: 50%; font-weight: 950; }
.section-heading h2 { margin-bottom: 10px; }
.section-heading p { margin: 0; font-size: 1.08rem; }
.copy p:last-child, .panel p:last-child { margin-bottom: 0; }
.intro-grid, .two-column, .device-layout, .vip-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 32px; align-items: start; }
.fact-card, .panel, .notice, .login-tip, .pros, .cons {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.fact-card { padding: 28px; }
.fact-card > strong { display: block; margin-bottom: 16px; font-size: 1.2rem; }
.fact-card dl { margin: 0; }
.fact-card dl div { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; padding: 11px 0; border-top: 1px solid rgba(255, 255, 255, .07); }
.fact-card dt { color: var(--muted); }
.fact-card dd { margin: 0; color: var(--text); font-weight: 750; }
.panel { min-height: 100%; padding: 30px; }
.positive-panel { box-shadow: inset 0 3px 0 var(--success); }
.warning-panel { box-shadow: inset 0 3px 0 var(--danger); }
.notice { padding: 18px 22px; margin-top: 24px; color: var(--muted); }
.notice strong { color: var(--brand); }

.bonus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 34px 0; }
.bonus-grid article { padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: linear-gradient(145deg, var(--surface-2), var(--surface)); }
.bonus-grid article > span { color: var(--brand); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.bonus-grid h3 { margin: 15px 0 8px; }
.bonus-grid strong { display: block; margin-bottom: 10px; color: var(--brand); font-size: 1.6rem; }
.bonus-grid p { margin: 0; font-size: .93rem; }
.rules-strip { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; margin: 28px 0; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); }
.rules-strip div { padding: 22px; border-right: 1px solid var(--border); }
.rules-strip div:last-child { border-right: 0; }
.rules-strip strong { display: block; color: var(--brand); font-size: 1.45rem; }
.rules-strip span { display: block; margin-top: 5px; color: var(--muted); font-size: .88rem; line-height: 1.45; }

.feature-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.feature-cards article { padding: 26px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); }
.feature-cards article > span { font-size: 1.8rem; }
.feature-cards h3 { margin: 14px 0 8px; }
.feature-cards p { margin: 0; font-size: .94rem; }
.catalog-sections { display: grid; gap: 70px; margin-bottom: 38px; }
.catalog-category { scroll-margin-top: 100px; }
.catalog-copy { display: grid; grid-template-columns: 50px minmax(0, 760px); gap: 18px; align-items: start; margin-bottom: 24px; }
.catalog-copy > span { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); font-size: 1.45rem; }
.catalog-copy h3 { margin: 0 0 6px; font-size: 1.65rem; }
.catalog-copy p { margin: 0; }
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: 18px; margin-bottom: 28px; }
table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--surface); }
th, td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
th { color: #07111d; background: var(--brand); }
tr:last-child td { border-bottom: 0; }
td:first-child { color: var(--text); font-weight: 800; }

.limit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.limit-grid div { padding: 24px; text-align: center; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); }
.limit-grid span, .limit-grid small { display: block; color: var(--muted); }
.limit-grid strong { display: block; margin: 5px 0; color: var(--brand); font-size: 2rem; }
.phone-mockup { display: grid; place-items: center; min-height: 520px; }
.mobile-casino-screen { width: 290px; height: 520px; padding: 8px 12px 12px; overflow: hidden; border: 8px solid #42446b; border-radius: 38px; background: #0b0c19; box-shadow: var(--shadow); }
.mobile-status, .mobile-casino-head, .mobile-categories, .mobile-casino-nav { display: flex; align-items: center; justify-content: space-between; }
.mobile-status { padding: 0 8px 5px; color: #8f8399; font-size: .56rem; }
.mobile-casino-head { padding: 8px 5px 12px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.mobile-wordmark { font-size: 1.04rem; font-weight: 900; }
.mobile-wordmark b { color: var(--brand); }
.mobile-account { padding: 5px 9px; color: #07111d; border-radius: 7px; background: var(--brand); font-size: .62rem; font-weight: 900; }
.mobile-offer { display: grid; justify-items: start; min-height: 142px; padding: 17px; margin: 12px 0; border: 1px solid #55518a; border-radius: 15px; background: radial-gradient(circle at 90% 20%, rgba(143, 124, 255, .18), transparent 32%), linear-gradient(135deg, #173b35, #0b0c19); }
.mobile-offer small { color: var(--brand); font-size: .56rem; font-weight: 900; letter-spacing: .08em; }
.mobile-offer strong { font-size: 1.3rem; line-height: 1.1; }
.mobile-offer > span { color: var(--muted); font-size: .72rem; }
.mobile-offer > b { align-self: end; padding: 6px 11px; color: #07111d; border-radius: 7px; background: var(--brand); font-size: .62rem; }
.mobile-categories { justify-content: flex-start; gap: 7px; margin-bottom: 10px; }
.mobile-categories span { padding: 5px 9px; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; font-size: .58rem; }
.mobile-categories span:first-child { color: #07111d; border-color: var(--brand); background: var(--brand); }
.mobile-games { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mobile-games a { min-width: 0; }
.mobile-games img { width: 100%; height: 122px; object-fit: contain; border: 1px solid var(--border); border-radius: 9px; background: #050307; }
.mobile-games small { display: block; margin-top: 4px; overflow: hidden; color: var(--text); font-size: .52rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.mobile-casino-nav { padding: 10px 18px 0; margin-top: 8px; border-top: 1px solid rgba(255, 255, 255, .08); }
.mobile-casino-nav span { display: grid; justify-items: center; color: var(--brand); font-size: .9rem; }
.mobile-casino-nav small { color: var(--muted); font-size: .48rem; }
.check-list { margin: 26px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 9px 0 9px 30px; color: var(--muted); border-bottom: 1px solid rgba(255, 255, 255, .06); }
.check-list li::before { position: absolute; left: 2px; color: var(--brand); content: "✓"; font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.steps article { padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); }
.steps article > span { display: grid; width: 40px; height: 40px; margin-bottom: 18px; place-items: center; color: #160b22; border-radius: 50%; background: var(--brand); font-weight: 950; }
.steps h3 { min-height: 2.6em; margin-bottom: 9px; font-size: 1.02rem; }
.steps p { margin: 0; font-size: .9rem; }
.login-tip { padding: 20px 24px; margin-top: 24px; color: var(--muted); }
.login-tip strong { color: var(--brand); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-grid article { padding: 28px; border: 1px solid var(--border); border-radius: 20px; background: var(--surface); }
.support-grid article > span { display: inline-flex; padding: 6px 10px; color: #160b22; border-radius: 8px; background: var(--brand); font-size: .7rem; font-weight: 950; letter-spacing: .1em; }
.support-grid h3 { margin: 24px 0 8px; }
.support-grid p { margin: 0; }

.vip-layout { align-items: center; }
.vip-track { display: grid; gap: 22px; padding: 28px; border: 1px solid var(--border); border-radius: 24px; background: var(--surface); }
.vip-track article { padding: 20px; border: 1px solid var(--border); border-radius: 17px; background: var(--surface-2); }
.vip-track article > span { display: block; margin-bottom: 8px; color: var(--brand); font-size: .72rem; font-weight: 950; letter-spacing: .09em; }
.vip-track article > strong { display: block; margin-bottom: 6px; font-size: 1.2rem; }
.vip-track article p { margin: 0; font-size: .88rem; }
.vip-track .vip-track-highlight { border-color: rgba(255, 202, 58, .35); background: linear-gradient(135deg, rgba(255, 202, 58, .09), var(--surface-2)); }
.vip-progress { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 0 7px; }
.vip-progress i { position: absolute; left: 20px; right: 20px; height: 4px; border-radius: 9px; background: linear-gradient(90deg, var(--purple), var(--brand)); }
.vip-progress b { position: relative; z-index: 1; display: grid; width: 34px; height: 34px; place-items: center; color: #07111d; border-radius: 50%; background: var(--brand); font-size: .75rem; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros, .cons { padding: 30px; }
.pros { box-shadow: inset 0 3px 0 var(--success); }
.cons { box-shadow: inset 0 3px 0 var(--danger); }
.pros h3 span { color: var(--success); }
.cons h3 span { color: var(--danger); }
.pros ul, .cons ul { margin: 22px 0 0; padding: 0; list-style: none; }
.pros li, .cons li { padding: 11px 0; color: var(--muted); border-bottom: 1px solid rgba(255, 255, 255, .06); }
.pros li:last-child, .cons li:last-child { border-bottom: 0; }
.verdict { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); }

.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list h3 { margin: 0; font-size: 1.08rem; }
.faq-list summary span { color: var(--brand); font-size: 1.5rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 44px 22px 4px; margin: 0; }

.section-cta { margin-top: 36px; }
.attention { animation: cta-glow 2.8s ease-in-out infinite; }
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 10px 28px rgba(255, 202, 58, .12); }
  50% { box-shadow: 0 12px 38px rgba(255, 202, 58, .28); }
}

.site-footer { padding: 58px 0 22px; border-top: 1px solid var(--border); background: #07030b; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 60px; }
.footer-grid img { width: 160px; height: auto; margin-bottom: 18px; }
.footer-grid strong { display: block; margin-bottom: 14px; }
.footer-grid a { display: block; margin: 7px 0; color: var(--muted); }
.footer-grid a:hover { color: var(--brand); }
.footer-grid p { font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; margin-top: 28px; color: #8c7d97; border-top: 1px solid rgba(255, 255, 255, .06); font-size: .82rem; }

@media (max-width: 1100px) {
  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bonus-grid, .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .casino-sidebar { display: none; }
  .casino-topbar { left: 0; min-height: 70px; padding: 10px 16px; }
  .mobile-brand { display: inline-flex; margin-right: auto; }
  .casino-search, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu.is-open { position: fixed; top: 70px; right: 0; left: 0; z-index: 54; display: block; border-top: 1px solid var(--border); background: var(--surface); }
  .mobile-menu ul { padding: 12px 18px 20px; }
  .mobile-menu li { border-bottom: 1px solid rgba(255, 255, 255, .06); }
  .mobile-menu li:last-child { border-bottom: 0; }
  .mobile-menu a { display: block; padding: 12px; font-weight: 750; }
  main, .site-footer { margin-left: 0; }
  main { padding-top: 70px; }
  .hero { padding: 18px 0 20px; }
  .hero-card { border-radius: 22px; }
  .hero-banner-main { grid-template-columns: 1fr; min-height: 0; }
  .hero-offer-copy { padding: 26px 22px; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 4rem); }
  .hero-mascot { min-height: 270px; }
  .mascot-bolt { width: 120px; height: 120px; font-size: 5rem; }
  .lobby { padding-top: 32px; }
  .game-row + .game-row { margin-top: 48px; }
  .toc ol { columns: 1; }
  .content-section { padding: 72px 0; }
  .section-heading { grid-template-columns: 46px 1fr; gap: 14px; }
  .section-heading > span { width: 42px; height: 42px; font-size: .84rem; }
  .intro-grid, .two-column, .device-layout, .vip-layout, .pros-cons { grid-template-columns: 1fr; }
  .rules-strip, .limit-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-strip div:nth-child(2) { border-right: 0; }
  .rules-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .steps { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .catalog-sections { gap: 54px; }
  .catalog-copy { grid-template-columns: 44px 1fr; gap: 14px; }
  .catalog-copy > span { width: 42px; height: 42px; }
  .phone-mockup { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 520px) {
  .mobile-brand, .mobile-brand img { width: 132px; }
  .hero-mascot { display: none; }
  .hero-bonus { font-size: 3.7rem; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .row-title { gap: 12px; }
  .row-title h3 { font-size: .96rem; text-align: center; }
  .game-card strong { font-size: .86rem; }
  .bonus-grid, .feature-cards, .rules-strip, .limit-grid, .steps { grid-template-columns: 1fr; }
  .rules-strip div { border-right: 0; border-bottom: 1px solid var(--border); }
  .rules-strip div:last-child { border-bottom: 0; }
  .fact-card dl div { grid-template-columns: 1fr; gap: 2px; }
  .vip-track { gap: 18px; padding: 18px; }
  .footer-bottom { flex-direction: column; }
}

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

/* Site 13: editorial landing hero */
:root {
  --brand: #ffca3a;
  --brand-dark: #b58808;
  --purple: #8f7cff;
  --purple-soft: #55518a;
  --bg: #0b0c19;
  --surface: #17182b;
  --surface-2: #222442;
  --surface-3: #2d2f55;
  --text: #f8f6ff;
  --muted: #bbb9d2;
  --border: #42446b;
  --container: 1100px;
}

body {
  background: #0b0c19;
}

body::before {
  background:
    radial-gradient(circle at 12% 8%, rgba(143, 124, 255, .1), transparent 28%),
    radial-gradient(circle at 78% 30%, rgba(255, 202, 58, .055), transparent 25%);
}

.site-header {
  position: sticky;
  top: -40px;
  z-index: 70;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(7, 19, 17, .96);
}

.promo-strip {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 20px;
  color: #a9a0b4;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(90deg, rgba(143, 124, 255, .09), rgba(255, 202, 58, .045));
  font-size: .77rem;
  font-weight: 700;
}

.promo-strip strong {
  color: var(--brand);
  font-size: .75rem;
  letter-spacing: .13em;
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 40px), var(--container));
  min-height: 80px;
  margin-inline: auto;
  align-items: center;
  gap: 32px;
}

.brand-logo {
  display: inline-flex;
  width: 152px;
  margin: 0;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
}


.desktop-nav {
  margin-left: auto;
}

.desktop-nav ul,
.mobile-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.desktop-nav li {
  border: 0;
}

.desktop-nav a {
  display: block;
  padding: 12px 0;
  color: #d9d2de;
  font-size: .92rem;
  font-weight: 750;
  transition: color .2s ease;
}

.desktop-nav a:hover {
  padding-left: 0;
  color: var(--brand);
}

.header-cta {
  min-height: 48px;
  padding: 12px 24px;
  margin-left: 18px;
  border-radius: 12px;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
}

.mobile-menu {
  display: none;
}

main,
.site-footer {
  margin-left: 0;
}

main {
  padding-top: 0;
}

.hero {
  position: relative;
  padding: clamp(60px, 7vh, 88px) 0 clamp(66px, 8vh, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 71% 50%, rgba(143, 124, 255, .14), transparent 29%),
    radial-gradient(circle at 16% 44%, rgba(255, 202, 58, .035), transparent 25%),
    #0b0c19;
}

.hero::before {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 1px;
  height: 74%;
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, .08), transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: clamp(38px, 4vw, 58px);
  align-items: center;
}

.hero-copy {
  max-width: 790px;
}

.hero-kicker {
  display: inline-flex;
  padding: 7px 15px;
  margin-bottom: 26px;
  color: var(--brand);
  border: 1px solid rgba(255, 202, 58, .28);
  border-radius: 999px;
  background: rgba(255, 202, 58, .055);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4vw, 4.15rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 span {
  display: block;
  color: var(--brand);
}

.hero-intro {
  max-width: 720px;
  margin-bottom: 30px;
  color: #b2c9c5;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .button-large {
  min-width: 188px;
  min-height: 58px;
  padding: 16px 25px;
  border-radius: 12px;
}

.hero-trust {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: #bbb9d2;
  list-style: none;
  font-size: .78rem;
  font-weight: 720;
}

.hero-trust li::before {
  margin-right: 6px;
  color: var(--brand);
  content: "✓";
  font-weight: 950;
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 42px clamp(28px, 3vw, 42px) 28px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  text-align: center;
  border: 1px solid rgba(255, 202, 58, .52);
  border-radius: 27px;
  background:
    radial-gradient(circle at 96% 5%, rgba(255, 202, 58, .13), transparent 27%),
    linear-gradient(145deg, #173b35, #091816 72%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42), 0 0 55px rgba(143, 124, 255, .09);
}

.offer-card::after {
  position: absolute;
  inset: 12px;
  z-index: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .035);
  border-radius: 20px;
}

.offer-card > *:not(.offer-orbit) {
  position: relative;
  z-index: 2;
}

.offer-logo {
  width: 170px;
  height: auto;
  margin-bottom: 23px;
}

.offer-label {
  display: block;
  margin-bottom: 12px;
  color: #bbb9d2;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero-bonus {
  display: block;
  color: #fff;
  font-size: clamp(2.9rem, 4.2vw, 4.65rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.hero-bonus em {
  display: block;
  margin-bottom: 7px;
  color: var(--brand);
  font-size: .42em;
  font-style: normal;
  letter-spacing: .08em;
  line-height: 1;
}

.hero-bonus span {
  display: block;
}

.hero-spins {
  display: inline-flex;
  padding: 7px 17px;
  margin: 14px 0 22px;
  color: #0b0c19;
  border-radius: 999px;
  background: var(--brand);
  font-size: .92rem;
  letter-spacing: .12em;
}

.offer-note {
  display: grid;
  width: 100%;
  padding: 15px 18px;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  text-align: left;
  border: 1px solid rgba(255, 202, 58, .12);
  border-radius: 13px;
  background: rgba(255, 202, 58, .055);
}

.offer-note > span {
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 950;
}

.offer-note p {
  margin: 0;
}

.offer-note strong,
.offer-note small {
  display: block;
}

.offer-note strong {
  font-size: .86rem;
}

.offer-note small {
  color: #9f95aa;
  font-size: .72rem;
}

.offer-button {
  width: 100%;
  min-height: 58px;
  margin-top: 16px;
  border-radius: 12px;
}

.offer-terms {
  margin-top: 13px;
  color: #776e82;
  font-size: .62rem;
}

.offer-orbit {
  position: absolute;
  top: -42px;
  right: -44px;
  z-index: 3;
  display: grid;
  width: 132px;
  height: 158px;
  place-items: center;
  border: 2px solid rgba(255, 238, 143, .82);
  border-radius: 48% 52% 50% 50%;
  background:
    radial-gradient(circle at 40% 32%, #fff3a0 0 3%, transparent 4%),
    linear-gradient(145deg, #ffe55a, #b88800 52%, #4c2364);
  box-shadow: 0 0 15px #ffca3a, 0 0 38px rgba(255, 202, 58, .68), 0 0 70px rgba(143, 124, 255, .35);
  transform: rotate(8deg);
}

.offer-orbit b {
  position: relative;
  z-index: 2;
  color: #24152d;
  font-size: 4.8rem;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .35);
}

.orbit-ring {
  position: absolute;
  inset: 18px 9px;
  border: 1px solid rgba(33, 16, 42, .55);
  border-radius: 50%;
  transform: rotate(48deg);
}

.ring-two {
  inset: 10px 28px;
  transform: rotate(-36deg);
}

.hero-stats {
  border-block: 1px solid rgba(255, 255, 255, .07);
  background: #111019;
}

.review-heading {
  max-width: 970px;
  margin-bottom: 42px;
}

.review-heading > span {
  display: block;
  margin-bottom: 13px;
  color: var(--brand);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .18em;
}

.review-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
}

.review-heading p {
  max-width: 860px;
  margin: 0;
  font-size: 1.05rem;
}

.review-score-grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.review-score-card,
.review-ratings,
.review-summary {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #15121c;
}

.review-score-card {
  display: flex;
  min-height: 320px;
  padding: 32px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-color: rgba(255, 202, 58, .3);
  background: radial-gradient(circle at 50% 25%, rgba(255, 202, 58, .13), transparent 55%), #15121c;
}

.score-number {
  color: var(--brand);
  font-size: 4.45rem;
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.07em;
}

.score-number small {
  color: #94899e;
  font-size: 1.5rem;
  letter-spacing: -.03em;
}

.score-stars {
  margin: 14px 0 9px;
  color: var(--brand);
  font-size: 1.5rem;
  letter-spacing: .12em;
}

.review-score-card > strong {
  font-size: 1.02rem;
}

.review-score-card p {
  margin: 9px 0 0;
  font-size: .85rem;
  line-height: 1.55;
}

.review-score-card p b {
  color: #d9d1df;
}

.review-ratings {
  display: grid;
  padding: 32px 34px;
  align-content: center;
  gap: 24px;
}

.rating-row > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.rating-row strong {
  font-size: .98rem;
}

.rating-row b {
  color: var(--brand);
  font-size: .92rem;
}

.rating-track {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #292331;
}

.rating-track i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d7a900, var(--brand) 70%, #ffe76d);
  box-shadow: 0 0 18px rgba(255, 202, 58, .18);
}

.review-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-summary {
  padding: 30px 32px;
}

.review-summary h3 {
  margin-bottom: 21px;
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-summary.positives h3 {
  color: var(--brand);
}

.review-summary.cautions h3 {
  color: #aca2b7;
}

.review-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-summary li {
  position: relative;
  padding: 8px 0 8px 27px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

.review-summary li::before {
  position: absolute;
  left: 0;
  color: var(--brand);
  content: "+";
  font-weight: 950;
}

.review-summary.cautions li::before {
  color: #8f8499;
  content: "−";
}

.source-links a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(255, 202, 58, .45);
  text-underline-offset: 3px;
}

.review-method {
  padding: 15px 18px;
  margin: 0 0 20px;
  color: #a99fb3;
  border-left: 3px solid var(--brand);
  background: rgba(255, 202, 58, .045);
  font-size: .84rem;
}

.sticky-bonus {
  position: fixed;
  right: 50%;
  bottom: 18px;
  z-index: 80;
  display: grid;
  width: min(calc(100% - 32px), 680px);
  min-height: 78px;
  padding: 10px 11px 10px 16px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(255, 202, 58, .34);
  border-radius: 18px;
  background: rgba(20, 16, 27, .96);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .55), 0 0 30px rgba(255, 202, 58, .08);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, calc(100% + 34px));
  transition: opacity .25s ease, transform .3s ease;
  backdrop-filter: blur(18px);
}

.sticky-bonus.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.sticky-bonus-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #24152d;
  border-radius: 13px;
  background: var(--brand);
  box-shadow: 0 0 20px rgba(255, 202, 58, .18);
  font-size: 1.75rem;
  font-weight: 950;
}

.sticky-bonus-copy small,
.sticky-bonus-copy strong {
  display: block;
}

.sticky-bonus-copy small {
  margin-bottom: 2px;
  color: var(--brand);
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .13em;
}

.sticky-bonus-copy strong {
  font-size: .94rem;
  line-height: 1.3;
}

.sticky-bonus-copy strong span {
  color: var(--brand);
}

.sticky-bonus .button {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: .82rem;
  white-space: nowrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-grid div {
  position: relative;
  padding: 25px 34px;
}

.stats-grid div::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 3px;
  content: "";
  border-radius: 4px;
  background: var(--brand);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-size: 1.65rem;
  line-height: 1.1;
}

.stats-grid span {
  margin-top: 4px;
  color: #9d94a8;
  font-size: .76rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .desktop-nav ul { gap: 18px; }
  .header-cta { margin-left: 4px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr); gap: 42px; }
  .offer-orbit { right: -20px; }
}

@media (max-width: 800px) {
  .site-header { top: -58px; }

  .promo-strip {
    min-height: 58px;
    padding: 8px 14px;
    flex-direction: column;
    gap: 1px;
    line-height: 1.35;
    text-align: center;
  }

  .promo-strip span { font-size: .66rem; }

  .nav-shell {
    width: 100%;
    min-height: 66px;
    padding: 9px 16px;
    gap: 12px;
  }

  .brand-logo {
    width: 124px;
    margin-right: auto;
  }


  .desktop-nav { display: none; }

  .header-cta {
    min-height: 43px;
    padding: 10px 15px;
    margin-left: 0;
    font-size: .74rem;
  }

  .menu-toggle {
    display: block;
    width: 43px;
    height: 43px;
    padding: 9px;
    border-color: #4a3b55;
    background: #17182b;
  }

  .menu-toggle span { background: #fff; }

  .mobile-menu.is-open {
    position: absolute;
    top: 124px;
    right: 0;
    left: 0;
    z-index: 54;
    display: block;
    border-top: 1px solid var(--border);
    background: #17182b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  }

  .mobile-menu ul {
    display: block;
    padding: 12px 18px 20px;
  }

  .mobile-menu li { border-bottom: 1px solid rgba(255, 255, 255, .06); }
  .mobile-menu li:last-child { border-bottom: 0; }
  .mobile-menu a { display: block; padding: 12px; font-weight: 750; }

  main { padding-top: 0; }

  .hero {
    padding: 40px 0 56px;
  }

  .hero::before { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.65rem, 9.2vw, 4.3rem);
  }

  .offer-card {
    width: min(100%, 560px);
    min-height: 500px;
    margin-inline: auto;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid div:nth-child(3), .stats-grid div:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .06); }

  .review-score-grid { grid-template-columns: 1fr; }
  .review-score-card { min-height: 280px; }
  .review-summary-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 36px), var(--container)); }

  .brand-logo,
  .brand-logo img {
    width: 112px;
  }

  .promo-strip strong { font-size: .65rem; }

  .hero {
    padding: 38px 0 48px;
  }

  .hero-kicker {
    padding: 7px 12px;
    margin-bottom: 22px;
    font-size: .61rem;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.15rem, 10.6vw, 3.1rem);
    line-height: .98;
  }

  .hero-intro {
    margin-bottom: 26px;
    font-size: .96rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero .button-large {
    min-width: 0;
    min-height: 54px;
    padding: 13px 12px;
    font-size: .78rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 26px;
    gap: 8px 10px;
    font-size: .68rem;
  }

  .offer-card {
    display: flex;
    min-height: 455px;
    padding: 34px 22px 24px;
    border-radius: 20px;
  }

  .offer-logo { width: 145px; }
  .hero-bonus { font-size: clamp(2.8rem, 13vw, 3.55rem); }
  .hero-spins { font-size: 1rem; }

  .offer-orbit {
    top: -23px;
    right: -9px;
    width: 96px;
    height: 116px;
  }

  .offer-orbit b { font-size: 3.7rem; }

  .offer-note { padding: 13px 14px; }

  .hero-stats { display: none; }

  .review-heading { margin-bottom: 30px; }
  .review-heading h2 { font-size: 2.05rem; }
  .review-heading p { font-size: .95rem; }
  .review-ratings { padding: 25px 20px; gap: 21px; }
  .rating-row strong { font-size: .82rem; }
  .review-summary { padding: 25px 22px; }
  .review-summary li { font-size: .88rem; }

  .sticky-bonus {
    bottom: 9px;
    width: calc(100% - 18px);
    min-height: 68px;
    padding: 8px 8px 8px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    border-radius: 15px;
  }

  .sticky-bonus-icon { display: none; }
  .sticky-bonus-copy small { font-size: .5rem; }
  .sticky-bonus-copy strong { font-size: .72rem; }
  .sticky-bonus-copy strong span { display: block; }
  .sticky-bonus .button { min-height: 46px; padding: 11px 14px; font-size: .7rem; }
}
