@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
:root {
  --bg: #0F1328;
  --panel: #151b35;
  --nav: #191E39;
  --secondary: #283152;
  --primary: #0B78D0;
  --text: #e8eaf6;
  --muted: #a0b0d0;
  --line: #394367;
  --success: #68e2a1;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: #72caff; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.wrapper { min-height: 100vh; overflow-x: hidden; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }
.box { border-radius: 14px; }
.container.hdr-wrap { padding-top: 12px; padding-bottom: 12px; }
.header {
  position: sticky;
  top: 12px;
  z-index: 50;
  margin: 0;
  padding: 12px 20px;
  background: var(--nav);
  border: 1px solid #293455;
  box-shadow: 0 12px 30px #05071480;
}
.header nav { display: block; }
.brand { flex: 0 0 auto; line-height: 0; }
.brand img, .footer-logo img { width: 150px; height: 48px; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 16px; flex: 1; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-link:hover { color: #fff; }
.nav-link svg { width: 20px; height: 20px; fill: currentColor; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.players { color: var(--success); font-size: 11px; white-space: nowrap; }
.players::first-letter { color: var(--success); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.14); }
.btn:focus-visible { outline: 3px solid #64caff; outline-offset: 2px; }
.btn--primary { background: var(--primary); box-shadow: 0 5px 15px #0b78d055; }
.btn--secondary { background: var(--secondary); }
.burger {
  display: none;
  padding: 6px;
  background: transparent;
  border: 0;
}
.burger i { display: block; width: 25px; height: 2px; margin: 5px; background: white; transition: .2s; }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 65px 20px;
  text-align: center;
  background: linear-gradient(90deg, #0f1328ee, #0f132866), url('/banner.png') center / cover;
}
.hero-content { width: min(800px, 100%); animation: fade-in .8s ease both; }
.eyebrow { color: #6bcaff; letter-spacing: 2px; font-weight: 700; }
.hero h1 { margin: 12px 0; color: white; font-size: clamp(30px, 5vw, 55px); line-height: 1.12; }
.hero p { color: #d8e1ff; }
.bonus-tile {
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
  margin: 25px auto;
  padding: 20px;
  border: 1px solid #4a70b8;
  border-radius: 14px;
  background: #191e39dd;
  font-size: 20px;
}
.bonus-tile strong { color: #63c8ff; font-size: 28px; }
.hero-actions { display: flex; justify-content: center; gap: 12px; }
.content { margin: 30px auto; padding: clamp(18px, 4vw, 42px); background: var(--panel); }
.text > h1 { color: white; }
h1, h2, h3, h4 { line-height: 1.25; }
h2 { margin: 38px 0 18px; color: white; font-size: 28px; }
h3 { margin: 8px 0; color: white; font-size: 17px; }
p { color: #ccd3e9; }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.advantage-card {
  min-height: 150px;
  padding: 21px;
  border: 1px solid #293554;
  border-radius: 12px;
  background: var(--nav);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}
.advantage-card:hover { transform: translateY(-5px); border-color: #398fd0; box-shadow: 0 12px 25px #0004; }
.advantage-card p { margin-bottom: 0; }
.payments-table-wrapper { overflow-x: auto; border-radius: 10px; }
.payments-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: #11172f;
  text-align: left;
}
.payments-table th { background: var(--nav); color: white; font-weight: 700; }
.payments-table th, .payments-table td { padding: 12px 14px; border: 1px solid var(--line); }
.payments-table tr:hover td { background: #1d284a; }
.payments-table td:first-child { color: #60caff; font-weight: 800; font-size: 20px; }
.winner-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.winner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 7px;
  background: #1a2344;
}
.winner b { color: #eaf1ff; }
.winner strong { color: #62caff; white-space: nowrap; }
.bonuses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bonus-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 255px;
  padding: 24px;
  border: 1px solid #293554;
  border-radius: 12px;
  background: var(--nav);
  transition: transform .25s ease, box-shadow .25s ease;
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px #0004; }
.bonus-card > span { font-size: 36px; }
.bonus-card .btn { margin-top: auto; }
.slot-machine {
  margin-top: 35px;
  padding: 30px 18px;
  border: 1px solid #34578c;
  border-radius: 15px;
  background: linear-gradient(135deg, #202a58, #131936);
  text-align: center;
}
.slot-reels { display: flex; justify-content: center; gap: 10px; margin: 20px; }
.slot-reels output {
  min-width: 85px;
  padding: 14px 18px;
  border: 2px solid #36a9ff;
  border-radius: 8px;
  background: #080c1d;
  font-size: 42px;
  line-height: 1.2;
}
.slot-prize { display: none; margin: 12px; }
.content-review { margin-top: 30px; padding: 25px; border-radius: 12px; background: #1a2140; }
.content-review h2 { margin-top: 0; }
.content-review p, .content-review li { color: #d8def3; }
.content-review table { border-collapse: collapse; }
.content-review th, .content-review td { padding: 10px; border: 1px solid var(--line); }
.content-review ul, .content-review ol { padding-left: 24px; }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.security-grid > div { padding: 20px; border-radius: 12px; background: var(--nav); text-align: center; }
.security-grid > div:first-letter { font-size: 28px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 4px;
  border: 0;
  background: transparent;
  color: white;
  text-align: left;
  font-weight: 700;
}
.faq-question span { color: #65caff; font-size: 22px; transition: transform .2s; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 12px; }
.faq-item.open .faq-answer { display: block; animation: slide-up .25s ease; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.review-card { padding: 20px; border-radius: 11px; background: var(--nav); }
.review-card small { color: var(--muted); }
.stars { color: #ffc861; letter-spacing: 2px; }
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 650px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 10px;
  background: var(--nav);
}
.comment-form label { display: flex; flex-direction: column; gap: 5px; color: #dce5ff; font-weight: 600; }
.comment-form input, .comment-form textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid #48557d;
  border-radius: 6px;
  outline: 0;
  background: #0c1127;
  color: white;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: #51baff; box-shadow: 0 0 0 2px #51baff33; }
#form-message { color: var(--success); }
.footer { margin-top: 35px; padding: 44px max(18px, calc((100% - 1160px) / 2)); background: var(--nav); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-grid > div { display: flex; flex-direction: column; }
.footer h3 { color: white; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: white; }
.copyright { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); text-align: center; }
.info-page { min-height: 480px; }
.fade-in { animation: fade-in .6s ease both; }
.qx7k2, .b9m3p, .unused-layout, .wp-hidden-dummy { display: none; }
@keyframes fade-in { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slide-up { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 #0b78d077; } 50% { box-shadow: 0 0 0 10px #0b78d000; } }
.hero .btn--primary, .slot-machine .btn--primary { animation: pulse 2.4s infinite; }
@media (max-width: 980px) {
  .header nav { gap: 10px; }
  .header-nav { gap: 10px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header { padding: 9px 12px; }
  .container.hdr-wrap { padding-top: 10px; padding-bottom: 10px; }
  .header { top: 10px; }
  .header nav { position: relative; }
  .burger { display: block; order: 2; }
  .header-nav {
    position: absolute;
    top: 58px;
    left: -12px;
    right: -12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--nav);
    border-top: 1px solid var(--line);
  }
  .header-nav.open { display: flex; }
  .brand { margin-right: auto; }
  .header-actions { order: 3; }
  .players { display: none; }
  .advantages-grid, .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .brand img { width: 112px; }
  .header-actions { gap: 4px; }
  .header-actions .btn { min-height: 36px; padding: 7px 9px; font-size: 11px; }
  .advantages-grid, .bonuses-grid, .security-grid, .reviews-grid { grid-template-columns: 1fr; }
  .winner-list { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
  .slot-reels output { min-width: 65px; padding: 11px 7px; font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
.u-flex { display: flex; }
.u-grid { display: grid; }
.u-center { text-align: center; }
.u-muted { color: var(--muted); }
.u-rounded { border-radius: 12px; }
.u-space { margin: 24px 0; }
.hero-content > * { position: relative; z-index: 1; }
.advantages { scroll-margin-top: 90px; }
.payments { scroll-margin-top: 90px; }
.bonuses { scroll-margin-top: 90px; }
.faq { scroll-margin-top: 90px; }
.winner-list b { font-weight: 600; }
.winner:first-child { border-left: 3px solid #f5ca55; }
.winner:nth-child(2) { border-left: 3px solid #bfc8d8; }
.winner:nth-child(3) { border-left: 3px solid #bd875e; }
.bonus-card p { min-height: 52px; }
.security-block { margin-top: 30px; }
.security-grid h3 { margin-top: 12px; }
.security-grid p { margin-bottom: 0; }
.reviews-block { margin-top: 30px; }
.review-card h3 { margin-bottom: 3px; }
.review-card p { margin-bottom: 0; }
.info-page h2 { margin-top: 30px; }
.info-page ul { padding-left: 24px; }
.info-page li { margin-bottom: 8px; }
.text strong { color: #fff; }
.text em { color: #c9d8ff; }
.text blockquote { margin: 20px 0; padding: 15px 20px; border-left: 4px solid var(--primary); background: #101630; }
.text code { padding: 2px 5px; border-radius: 4px; background: #0b1025; color: #7ad0ff; }
.hero-actions .btn { min-width: 130px; }
.header-actions .btn { font-size: 13px; }
.nav-link:focus-visible, .footer a:focus-visible { outline: 2px solid #67caff; outline-offset: 4px; }
.payments h2 { margin-bottom: 16px; }
.winners h2 { margin-bottom: 16px; }
.winner span { overflow: hidden; text-overflow: ellipsis; }
.winner strong { align-self: center; }
.slot-machine h2 { margin-top: 0; }
.slot-machine p { min-height: 26px; }
.slot-reels output:nth-child(2) { border-color: #6c80ff; }
.slot-reels output:nth-child(3) { border-color: #ba63ff; }
.content-review > :first-child { margin-top: 0; }
.content-review > :last-child { margin-bottom: 0; }
.security-grid > div:hover { background: #20294b; }
.faq-question:hover { color: #73cbff; }
.faq-answer p { max-width: 850px; }
.comment-form h3 { margin-top: 0; }
.comment-form .btn { align-self: flex-start; }
.footer-grid p { margin: 7px 0; }
.footer-grid a { line-height: 1.9; }
.footer-grid h3 + a { margin-top: 4px; }
.copyright { font-size: 13px; }
.hero .eyebrow { margin-bottom: 6px; }
.hero .bonus-tile span { color: #fff; }
.brand a { display: block; }
.brand img { object-position: center; }
.header-nav .nav-link { white-space: nowrap; }
.advantages-grid > * { min-width: 0; }
.bonuses-grid > * { min-width: 0; }
.reviews-grid > * { min-width: 0; }
.content-review img { border-radius: 9px; }
.content-review a { color: #77ceff; }
.content-review h2 { color: #fff; }
.info-page p { max-width: 900px; }
.info-page h1 { font-size: clamp(28px, 4vw, 44px); }
.info-page { padding-bottom: 55px; }
.footer-logo + p { margin-top: 2px; }
.players b { color: #b2ffd1; }
.faq-question span { flex: 0 0 auto; margin-left: 10px; }
.slot-machine .btn { border: 0; }
.slot-reels output { user-select: none; }
.payments-table thead { position: sticky; top: 0; }
.payments-table tbody tr:nth-child(even) { background: #141d3b; }
.winner-list strong::first-letter { color: #91dcff; }
.bonus-card h3 { font-size: 19px; }
.bonus-card p { color: #cbd6f0; }
.advantage-card h3 { font-size: 18px; }
.advantage-card::first-line { color: #70caff; }
.security-grid h3 { font-size: 16px; }
.review-card .stars { font-size: 14px; }
.comment-form textarea { resize: vertical; min-height: 100px; }
.content { box-shadow: 0 15px 45px #05071433; }
.footer { box-shadow: inset 0 20px 40px #090d1f66; }
.hero + .container { position: relative; }
.hero-actions .btn--primary { background: var(--primary); }
.hero-actions .btn--secondary { background: var(--secondary); }
.header-actions .btn--primary { background: var(--primary); }
.header-actions .btn--secondary { background: var(--secondary); }
.footer-grid > div:first-child { gap: 4px; }
.footer-grid > div:last-child { min-width: 0; }
.footer-grid p { overflow-wrap: anywhere; }
.u-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.is-loading { opacity: .65; pointer-events: none; }
.text hr { border: 0; border-top: 1px solid var(--line); }
.text figure { margin: 22px 0; }
.text figcaption { color: var(--muted); font-size: 13px; }
.text mark { padding: 2px 4px; background: #275a82; color: white; }
.text sup { color: #7dceff; }
.footer p { color: var(--muted); }
.footer-logo { display: inline-block; }
.footer-grid h3 { margin-top: 0; }
.copyright a { color: var(--muted); }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }
::selection { color: white; background: var(--primary); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
.header-inner { display: flex; align-items: center; gap: 0; }
.header-left { flex: 1; display: flex; align-items: center; gap: 12px; }
.header-center { flex: 1; display: flex; justify-content: center; }
.header-right { flex: 1; display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.logo-link img { width: 140px; height: 44px; object-fit: contain; }
.online-counter { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--success); white-space: nowrap; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 1.5s infinite; }
.burger-btn { display: none; flex-direction: column; gap: 5px; padding: 6px; background: transparent; border: 0; }
.burger-line { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger-btn.active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active .burger-line:nth-child(2) { opacity: 0; }
.burger-btn.active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero-section { position: relative; overflow: hidden; }
.hero-bg { min-height: 580px; display: flex; align-items: stretch; background-size: cover; background-position: center; }
.hero-overlay { width: 100%; min-height: 580px; display: flex; align-items: center; padding: 60px 0; background: linear-gradient(180deg, rgba(15,19,40,.97) 0%, rgba(15,19,40,.92) 50%, rgba(11,120,208,.35) 100%); position: relative; }
.hero-content { text-align: center; width: 100%; }
.hero-title { font-size: clamp(28px,4.5vw,52px); font-weight: 800; color: white; margin: 0 0 12px; line-height: 1.15; }
.hero-sub { font-size: 18px; color: #d0d8f0; margin: 0 0 28px; }
.bonus-tile { width: min(450px,100%); margin: 0 auto 28px; background: rgba(25,30,57,.9); border: 1px solid #3e6aa8; border-radius: 14px; padding: 22px; }
.bonus-tile-label { font-size: 13px; font-weight: 700; letter-spacing: 1px; color: #6bc8ff; text-transform: uppercase; margin-bottom: 6px; }
.bonus-tile-amount { font-size: 26px; font-weight: 800; color: white; }
.bonus-tile-amount strong { color: #63c8ff; }
.bonus-tile-note { font-size: 12px; color: var(--muted); margin-top: 6px; }
.hero-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn--sm { min-height: 36px; padding: 7px 14px; font-size: 13px; }
.btn--full { width: 100%; }
.block-section { margin: 48px 0; padding: 32px; border-radius: 14px; background: #141c36; border: 1px solid #222d4e; }
.section-title { font-size: clamp(22px,3vw,30px); font-weight: 800; color: white; margin: 0 0 8px; }
.section-sub { color: var(--muted); margin: 0 0 28px; }
.adv-icon { margin-bottom: 14px; }
.adv-title { color: white; font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.adv-text { color: #b8c4e0; font-size: 14px; margin: 0; }
.table-scroll-wrap { overflow-x: auto; border-radius: 10px; }
.payments-table { width: 100%; min-width: 750px; border-collapse: collapse; }
.payments-table th { background: #191E39; color: #e0eaff; font-size: 13px; font-weight: 700; padding: 13px 14px; border: 1px solid #2e3d65; text-align: left; }
.payments-table td { padding: 11px 14px; border: 1px solid #2e3d65; color: #cdd8f0; font-size: 14px; }
.payments-table tr:nth-child(even) td { background: #111829; }
.payments-table tr:hover td { background: #1a2548; }
.pay-icon { font-size: 16px; margin-right: 6px; }
.winners-list { display: flex; flex-direction: column; gap: 6px; }
.winner-item { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-radius: 8px; background: #1a2344; border-left: 3px solid #2e3d65; }
.winner-item.winner-gold { border-left-color: #f5ca55; }
.winner-item.winner-silver { border-left-color: #bfc8d8; }
.winner-item.winner-bronze { border-left-color: #bd875e; }
.w-rank { font-size: 13px; font-weight: 700; min-width: 32px; color: var(--muted); }
.w-name { font-weight: 700; color: #dce8ff; flex: 1; }
.w-game { font-size: 12px; color: var(--muted); flex: 1; }
.w-amount { font-weight: 800; color: #63c8ff; white-space: nowrap; }
.bonuses-slider-wrap { position: relative; }
.bonuses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bonus-card { border-radius: 14px; border: 1px solid #2e3d65; background: var(--nav); padding: 26px; display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.bonus-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px #0006; }
.bc-featured { border-color: #0B78D0; box-shadow: 0 0 0 1px #0B78D044; }
.bonus-badge { position: absolute; top: 14px; right: 14px; background: #0B78D0; color: white; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.bonus-icon { font-size: 36px; line-height: 1; }
.bonus-card-title { font-size: 18px; font-weight: 800; color: white; margin: 0; }
.bonus-value { font-size: 22px; font-weight: 800; color: #63c8ff; }
.bonus-extra { font-size: 13px; color: var(--muted); }
.bonus-terms { padding-left: 18px; margin: 6px 0; }
.bonus-terms li { font-size: 13px; color: #b0bed8; margin-bottom: 3px; }
.bonus-nav { display: none; justify-content: center; gap: 10px; margin-top: 16px; }
.bonus-nav-btn { background: var(--secondary); color: white; border: 0; border-radius: 50%; width: 36px; height: 36px; font-size: 22px; cursor: pointer; transition: background .2s; }
.bonus-nav-btn:hover { background: var(--primary); }
.slot-machine { position: relative; text-align: center; min-height: 300px; display: flex; flex-direction: column; justify-content: center; }
.slot-reels { display: flex; justify-content: center; gap: 12px; margin: 24px 0; }
.slot-reel { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; font-size: 46px; border-radius: 12px; border: 2px solid #36a9ff; background: #080c1d; user-select: none; transition: border-color .2s; }
.slot-result { min-height: 28px; font-size: 15px; font-weight: 600; color: var(--success); margin-bottom: 16px; }
.slot-spin-btn { min-width: 200px; font-size: 17px; animation: pulse 2.4s infinite; }
.slot-win-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(8,12,29,.94); border-radius: 14px; z-index: 5; overflow: hidden; padding: 12px; }
.slot-win-inner { text-align: center; padding: 8px 16px; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.slot-win-emoji { font-size: 44px; line-height: 1; }
.slot-win-title { font-size: 24px; font-weight: 800; color: white; margin: 0; line-height: 1.2; }
.slot-win-text { color: #d0d8f0; margin: 0 0 8px; font-size: 14px; line-height: 1.4; }
.slot-retry-btn { display: block; margin: 6px auto 0; background: transparent; border: 1px solid #4a6aaa; color: var(--muted); padding: 8px 20px; border-radius: 8px; cursor: pointer; transition: border-color .2s, color .2s; }
.slot-retry-btn:hover { border-color: #6a9ada; color: white; }
.review-author { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding: 20px; background: #191E39; border-radius: 12px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: white; flex-shrink: 0; }
.author-name { font-weight: 700; color: white; font-size: 16px; }
.author-bio { font-size: 13px; color: var(--muted); margin: 4px 0; }
.author-link { font-size: 12px; color: #72caff; }
.review-content-block { color: #ccd3e9; }
.review-content-block h2,.review-content-block h3,.review-content-block h4 { color: white; margin-top: 28px; }
.review-content-block p { margin-bottom: 16px; }
.review-content-block ul,.review-content-block ol { padding-left: 22px; margin-bottom: 16px; }
.review-content-block li { margin-bottom: 6px; }
.review-content-block table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.review-content-block th,.review-content-block td { padding: 10px; border: 1px solid var(--line); text-align: left; }
.review-content-block th { background: #191E39; color: white; }
.review-content-block a { color: #72caff; }
.review-content-block blockquote { border-left: 4px solid var(--primary); background: #101630; padding: 14px 18px; margin: 18px 0; }
.security-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.security-item { padding: 24px; border-radius: 12px; background: var(--nav); border: 1px solid #2e3d65; transition: border-color .25s; }
.security-item:hover { border-color: #0B78D0; }
.security-icon { margin-bottom: 14px; }
.security-title { font-size: 17px; font-weight: 700; color: white; margin: 0 0 10px; }
.security-text { color: #b8c4e0; font-size: 14px; margin: 0; }
.faq-list { margin-top: 10px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 4px; border: 0; background: transparent; color: white; font-weight: 700; font-size: 15px; text-align: left; cursor: pointer; transition: color .2s; }
.faq-question:hover { color: #73cbff; }
.faq-arrow { color: #65caff; font-size: 20px; transition: transform .25s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 4px 18px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: #c8d4ec; margin: 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 36px; }
.review-card { padding: 22px; border-radius: 12px; background: var(--nav); border: 1px solid #2e3d65; }
.review-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: white; flex-shrink: 0; }
.reviewer-name { font-weight: 700; color: white; font-size: 15px; margin-bottom: 2px; }
.review-stars { color: #ffc861; font-size: 14px; margin-bottom: 2px; }
.review-date { font-size: 12px; color: var(--muted); }
.review-text { color: #cdd4ea; font-size: 14px; margin: 0; font-style: italic; }
.comment-form-wrap { background: var(--nav); border-radius: 14px; padding: 28px; border: 1px solid #2e3d65; }
.cf-title { font-size: 20px; font-weight: 800; color: white; margin: 0 0 20px; }
.comment-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: #dce5ff; }
.form-input { width: 100%; padding: 12px 14px; background: #0c1127; border: 1px solid #394367; border-radius: 8px; color: white; outline: 0; transition: border-color .2s; }
.form-input:focus { border-color: #51baff; box-shadow: 0 0 0 3px #0b78d033; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-success { color: var(--success); font-weight: 600; padding: 10px; background: #0a2018; border-radius: 6px; }
.form-error { color: #ff8080; font-weight: 600; padding: 10px; background: #1f0a0a; border-radius: 6px; }
.footer-outer { background: var(--nav); margin-top: 50px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 18px 28px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; }
.footer-logo-link img { width: 140px; height: 44px; object-fit: contain; }
.footer-flag { font-size: 28px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; background: #283152; color: #a0b0d0; transition: background .2s, color .2s; text-decoration: none; }
.social-link:hover { background: var(--primary); color: white; }
.footer-nav-row { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-nav-link { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-nav-link:hover { color: white; }
.footer-sections { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-section-title { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-payments,.footer-providers { display: flex; flex-wrap: wrap; gap: 6px; }
.payment-badge,.provider-name { font-size: 12px; padding: 4px 10px; border-radius: 20px; border: 1px solid #394367; color: var(--muted); }
.footer-licenses,.footer-responsible { display: flex; flex-direction: column; gap: 8px; }
.license-badge { font-size: 12px; color: var(--muted); }
.responsible-link { font-size: 12px; color: #72caff; text-decoration: none; display: block; margin-bottom: 4px; }
.responsible-link:hover { color: white; }
.responsible-text { font-size: 11px; color: #6a7898; margin: 8px 0 0; }
.footer-contact-row { text-align: center; margin-bottom: 16px; }
.footer-email { color: var(--muted); font-size: 13px; }
.footer-email a { color: #72caff; text-decoration: none; }
.footer-legal { font-size: 12px; color: #5a6880; text-align: center; max-width: 800px; margin: 0 auto 16px; line-height: 1.6; }
.footer-copyright { text-align: center; font-size: 13px; color: #4a5870; padding-top: 16px; border-top: 1px solid var(--line); }
@media (max-width: 900px) {
  .footer-sections { grid-template-columns: repeat(2,1fr); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .bonus-nav { display: flex; }
}
@media (max-width: 768px) {
  .header-center { flex: 0 0 0; width: 0; min-width: 0; overflow: visible; }
  .header-right .btn--secondary { display: none; }
  .header-left .online-counter { display: none; }
  .header-inner { overflow: hidden; min-width: 0; flex-wrap: nowrap; }
  .header-left { flex-shrink: 0; min-width: 0; }
  .header-right { flex-shrink: 0; gap: 6px; }
  .header-right .btn--primary { font-size: .78rem; padding: 7px 12px; white-space: nowrap; }
  .burger-btn { display: flex; position: relative; z-index: 1001; }
  .header-nav { position: fixed; top: 0; left: 0; right: 0; bottom: 0; display: none; flex-direction: column; align-items: stretch; padding: 80px 24px 32px; background: var(--nav); z-index: 1000; overflow-y: auto; gap: 8px; }
  .header-nav.open { display: flex; }
  body.menu-open { overflow: hidden; }
  .header-nav .nav-link { width: 100%; align-self: stretch; font-size: 1rem; font-weight: 600; padding: 12px 14px; border-bottom: 1px solid var(--line); }
  .header-nav .mob-nav-btns { display: flex; width: 100%; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
  .mob-nav-btns .btn { flex: 1; justify-content: center; text-align: center; }
  .advantages-grid { grid-template-columns: repeat(2,1fr); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .footer-sections { grid-template-columns: repeat(2,1fr); }
  .winners-list { gap: 4px; }
  .w-game { display: none; }
  .bonus-nav { display: none; }
}
@media (max-width: 480px) {
  .header-inner { position: relative; }
  .advantages-grid { grid-template-columns: 1fr; }
  .footer-sections { grid-template-columns: 1fr; }
  .slot-reel { width: 70px; height: 70px; font-size: 34px; }
  .slot-win-emoji { font-size: 36px; }
  .slot-win-title { font-size: 20px; }
  .slot-win-text { font-size: 13px; }
  .slot-win-inner .btn { min-height: 40px; padding: 8px 18px; font-size: 14px; }
  .hero-title { font-size: 26px; }
  .block-section { padding: 20px 16px; }
}

.mob-nav-btns { display: none; }
