/* ════════════════════════════════════════════
   TREASURES OF AZTEC — Design System
   Dark Luxury Casino Aesthetic
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ─── TOKENS ─── */
:root {
  --header-h:    60px;
  --gold:        #d4a017;
  --gold-light:  #f0c535;
  --gold-dark:   #a07810;
  --gold-glow:   rgba(212,160,23,.25);
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --red:         #ef4444;
  --amber:       #f59e0b;

  --bg-0:        #07090f;
  --bg-1:        #0d1117;
  --bg-2:        #131820;
  --bg-3:        #1a2030;
  --bg-card:     #111827;
  --bg-hover:    #1e2737;

  --border:      rgba(255,255,255,.08);
  --border-gold: rgba(212,160,23,.35);

  --text-1:      #f0f4fa;
  --text-2:      #94a3b8;
  --text-3:      #5c6a7e;

  --font-head:   'Oswald', sans-serif;
  --font-body:   'Source Sans 3', sans-serif;

  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-full: 999px;

  --shadow-card: 0 4px 24px rgba(0,0,0,.45);
  --shadow-gold: 0 0 24px var(--gold-glow);
  --shadow-btn:  0 4px 18px rgba(212,160,23,.4);
}

/* ─── RESET ─── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.7;
  color:var(--text-1);
  background:var(--bg-0);
  overflow-x:hidden;
  max-width:100vw;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}

/* ─── NOISE TEXTURE ─── */
body::before{
  content:'';
  position:fixed;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:0;
  opacity:.5;
}

/* ─── CONTAINER ─── */
.container{max-width:1180px;margin:0 auto;padding:0 20px}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4{font-family:var(--font-head);font-weight:600;line-height:1.2;letter-spacing:.02em}
h1{font-size:clamp(28px,4vw,48px)}
h2{font-size:clamp(22px,3vw,36px)}
h3{font-size:clamp(18px,2.5vw,24px)}

.gold-text{
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 60%,var(--gold) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ═══════════════════════════════════
   BUTTONS
   ═══════════════════════════════════ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 28px;
  border-radius:var(--r-full);
  font-family:var(--font-head);
  font-size:15px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  border:none;cursor:pointer;
  transition:all .25s ease;
  white-space:nowrap;
  position:relative;overflow:hidden;
}
.btn::after{
  content:'';position:absolute;inset:0;
  background:rgba(255,255,255,.08);
  opacity:0;transition:opacity .2s;
}
.btn:hover::after{opacity:1}

.btn-gold{
  background:linear-gradient(135deg,var(--gold-dark),var(--gold-light));
  color:#07090f;
  box-shadow:var(--shadow-btn);
}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 6px 28px rgba(212,160,23,.55)}

.btn-green{
  background:linear-gradient(135deg,var(--green-dark),var(--green));
  color:#fff;
  box-shadow:0 4px 18px rgba(34,197,94,.35);
}
.btn-green:hover{transform:translateY(-2px);box-shadow:0 6px 28px rgba(34,197,94,.5)}

.btn-outline{
  background:transparent;
  color:var(--gold);
  border:1.5px solid var(--border-gold);
}
.btn-outline:hover{background:var(--gold-glow);border-color:var(--gold)}

.btn-sm{padding:9px 20px;font-size:13px}
.btn-lg{padding:16px 38px;font-size:17px}
.btn-full{width:100%}

@keyframes pulse{0%,100%{box-shadow:var(--shadow-btn)}50%{box-shadow:0 0 32px rgba(212,160,23,.7)}}
.pulse{animation:pulse 2.2s ease-in-out infinite}

/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */
.header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:var(--header-h);
  background:rgba(7,9,15,.96);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:100%;
  padding: 10px 0;
}
.logo img{height:36px;width:auto}
.header-cta{display:flex;align-items:center;gap:12px}
.age-badge{
  font-size:11px;font-weight:700;color:var(--text-3);
  border:1px solid var(--border);
  border-radius:var(--r-full);
  padding:3px 8px;
}

/* ═══════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════ */
.breadcrumbs{
  padding-top:var(--header-h);
  background:var(--bg-1);
}
.breadcrumbs-inner{
  display:flex;align-items:center;gap:6px;
  padding:12px 0;
  font-size:13px;color:var(--text-3);
  border-bottom:1px solid var(--border);
}
.breadcrumbs-inner a:hover{color:var(--gold)}
.breadcrumbs-inner span{color:var(--text-3)}
.bc-sep{opacity:.4}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero{
  background:var(--bg-1);
  padding:32px 0 48px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:32px;
  align-items:start;
}

/* Slot frame */
.slot-frame{
  position:relative;
  border-radius:var(--r-lg);
  overflow:hidden;
  border:1px solid var(--border-gold);
  box-shadow:var(--shadow-gold),var(--shadow-card);
  background:var(--bg-2);
  aspect-ratio:16/9;
  display:flex;align-items:center;justify-content:center;
}
.slot-frame-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 30% 50%,rgba(212,160,23,.18) 0%,transparent 60%),
    radial-gradient(ellipse at 80% 30%,rgba(120,60,0,.25) 0%,transparent 55%),
    linear-gradient(160deg,#1a0d00 0%,#0a1020 40%,#030810 100%);
}
.slot-frame-art{
  position:relative;z-index:2;
  text-align:center;
  padding:20px;
}
.slot-title-art{
  font-family:var(--font-head);
  font-size:clamp(22px,3vw,40px);
  font-weight:700;
  letter-spacing:.06em;
  background:linear-gradient(135deg,#c9960c,#f5c842,#c9960c);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  text-shadow:none;
  margin-bottom:8px;
  filter:drop-shadow(0 2px 12px rgba(212,160,23,.6));
}
.slot-provider-art{
  font-size:13px;color:var(--text-2);letter-spacing:.12em;text-transform:uppercase;
}
.slot-frame-badges{
  position:absolute;bottom:14px;left:14px;right:14px;z-index:3;
  display:flex;gap:8px;flex-wrap:wrap;
}
.frame-badge{
  background:rgba(7,9,15,.8);
  border:1px solid var(--border-gold);
  border-radius:var(--r-full);
  padding:4px 12px;
  font-size:12px;font-weight:600;color:var(--gold-light);
  backdrop-filter:blur(6px);
}
.play-overlay{
  position:absolute;inset:0;z-index:4;
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .3s;
}
.slot-frame:hover .play-overlay{opacity:1}
.play-overlay-btn{
  width:72px;height:72px;
  background:rgba(212,160,23,.9);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;
}

/* Hero sidebar */
.hero-sidebar{display:flex;flex-direction:column;gap:16px}

.stat-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  overflow:hidden;
}
.stat-card-head{
  padding:10px 16px;
  background:var(--bg-3);
  border-bottom:1px solid var(--border);
  font-family:var(--font-head);
  font-size:13px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  color:var(--gold);
}
.stat-rows{display:flex;flex-direction:column}
.stat-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:9px 16px;
  border-bottom:1px solid var(--border);
  font-size:13px;
}
.stat-row:last-child{border-bottom:none}
.stat-label{color:var(--text-2)}
.stat-value{font-weight:600;color:var(--text-1)}
.stat-value.gold{color:var(--gold-light)}
.stat-value.green{color:var(--green)}

.volatility-bar{
  display:flex;gap:3px;align-items:center;
}
.vol-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--border);
}
.vol-dot.active{background:var(--amber)}

.rating-stars{display:flex;gap:2px;align-items:center}
.star{color:var(--gold);font-size:14px}
.star.empty{color:var(--border)}
.rating-num{font-size:12px;color:var(--text-2);margin-left:4px}

/* Hero CTA box */
.hero-cta-box{
  background:linear-gradient(135deg,rgba(212,160,23,.12),rgba(212,160,23,.04));
  border:1px solid var(--border-gold);
  border-radius:var(--r-md);
  padding:18px;
  text-align:center;
}
.hero-cta-label{
  font-size:12px;color:var(--text-2);letter-spacing:.08em;text-transform:uppercase;margin-bottom:8px;
}
.hero-cta-bonus{
  font-family:var(--font-head);
  font-size:22px;font-weight:700;
  color:var(--gold-light);
  margin-bottom:4px;
}
.hero-cta-sub{font-size:12px;color:var(--text-2);margin-bottom:14px}

/* Hero title block */
.hero-title-block{margin-bottom:20px}
.hero-h1{margin-bottom:10px}
.hero-meta{
  display:flex;gap:8px;flex-wrap:wrap;align-items:center;
  margin-bottom:16px;
}
.meta-pill{
  display:inline-flex;align-items:center;gap:5px;
  background:var(--bg-3);
  border:1px solid var(--border);
  border-radius:var(--r-full);
  padding:5px 12px;
  font-size:12px;color:var(--text-2);
  white-space:nowrap;
  flex-shrink:0;
}
.meta-pill span.dot{width:6px;height:6px;border-radius:50%;background:var(--green);flex-shrink:0}

/* ═══════════════════════════════════
   SECTION DIVIDER / LAYOUT
   ═══════════════════════════════════ */
.section-wrap{
  padding:52px 0;
}
.section-wrap + .section-wrap{
  border-top:1px solid var(--border);
}
.section-alt{background:var(--bg-1)}

.section-head{
  display:flex;align-items:baseline;gap:14px;
  margin-bottom:28px;
}
.section-h2{
  font-family:var(--font-head);
  font-size:clamp(20px,2.5vw,30px);
  font-weight:600;
}
.section-h2 .accent{color:var(--gold)}
.section-count{
  font-size:12px;color:var(--text-3);
  border:1px solid var(--border);
  border-radius:var(--r-full);
  padding:2px 10px;
}

/* ═══════════════════════════════════
   CASINO CARD (top offer)
   ═══════════════════════════════════ */
.casino-card{
  display:grid;
  grid-template-columns:80px 1fr auto;
  gap:20px;align-items:center;
  background:var(--bg-card);
  border:1px solid var(--border-gold);
  border-radius:var(--r-lg);
  padding:20px 24px;
  box-shadow:var(--shadow-gold);
  position:relative;overflow:hidden;
}
.casino-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--gold-dark),var(--gold-light),var(--gold-dark));
}
.casino-logo{
  width:80px;height:60px;
  background:var(--bg-3);
  border-radius:var(--r-sm);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-size:11px;
  color:var(--text-3);text-align:center;
  padding:8px;letter-spacing:.06em;text-transform:uppercase;
}
.casino-info{min-width:0}
.casino-name{
  font-family:var(--font-head);font-size:18px;font-weight:600;
  color:var(--text-1);margin-bottom:6px;
}
.casino-bonus{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.25);
  border-radius:var(--r-full);
  padding:4px 14px;
  font-size:14px;font-weight:600;color:var(--green);
  margin-bottom:8px;
}
.casino-features{
  display:flex;gap:8px;flex-wrap:wrap;
}
.feat-tag{
  background:var(--bg-3);
  border:1px solid var(--border);
  border-radius:var(--r-full);
  padding:3px 10px;
  font-size:11px;color:var(--text-2);
}
.casino-actions{display:flex;flex-direction:column;gap:8px;min-width:160px}

/* List of casinos */
.casino-list{display:flex;flex-direction:column;gap:12px}
.casino-row{
  display:grid;
  grid-template-columns:40px 60px 1fr auto auto;
  gap:16px;align-items:center;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:14px 18px;
  transition:border-color .2s,background .2s;
}
.casino-row:hover{border-color:var(--border-gold);background:var(--bg-hover)}
.casino-num{
  font-family:var(--font-head);font-size:18px;font-weight:700;
  color:var(--text-3);text-align:center;
}
.casino-row-logo{
  width:60px;height:44px;
  background:var(--bg-3);border-radius:var(--r-sm);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:10px;color:var(--text-3);text-align:center;padding:4px;
  font-family:var(--font-head);letter-spacing:.06em;text-transform:uppercase;
}
.casino-row-info{min-width:0}
.casino-row-name{font-weight:600;font-size:15px;margin-bottom:3px}
.casino-row-bonus{font-size:13px;color:var(--green);font-weight:600}
.casino-row-rating{
  display:flex;flex-direction:column;align-items:center;gap:2px;
}
.casino-row-rating .num{
  font-family:var(--font-head);font-size:18px;font-weight:700;color:var(--gold-light);
}
.casino-row-rating .lbl{font-size:10px;color:var(--text-3)}

/* ═══════════════════════════════════
   REVIEW / CONTENT
   ═══════════════════════════════════ */
.review-lead{
  font-size:18px;color:var(--text-2);line-height:1.75;
  border-left:3px solid var(--gold-dark);
  padding-left:18px;
  margin-bottom:32px;
}

.info-block{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
  margin-bottom:20px;
}
.info-block-head{
  display:flex;align-items:center;gap:12px;
  padding:14px 20px;
  background:var(--bg-3);
  border-bottom:1px solid var(--border);
}
.info-block-icon{font-size:20px}
.info-block-title{
  font-family:var(--font-head);font-size:17px;font-weight:600;
  color:var(--text-1);
}
.info-block-body{padding:24px}
.info-block-body p{color:var(--text-2);margin-bottom:14px;font-size:15px;line-height:1.75}
.info-block-body p:last-child{margin-bottom:0}

/* Feature list — правильный отступ при переносе строк */
.feature-list{display:flex;flex-direction:column;gap:12px}
.feature-list li{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:14px;color:var(--text-2);
  line-height:1.65;
}
.feature-list li::before{
  content:'▸';
  color:var(--gold);
  flex-shrink:0;
  margin-top:2px;
  width:12px;
  text-align:center;
}
.feature-list li > span{flex:1;min-width:0}
.feature-list li strong{color:var(--text-1)}

/* Checkmark list */
.check-list{display:flex;flex-direction:column;gap:8px}
.check-list li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:14px;color:var(--text-2);
}
.check-list li .ico{flex-shrink:0;margin-top:2px}
.ico-yes{color:var(--green)}
.ico-no{color:var(--red)}
.ico-warn{color:var(--amber)}

/* Stats grid */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:12px;
}
.stat-box{
  background:var(--bg-3);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:16px 14px;
  text-align:center;
}
.stat-box-val{
  font-family:var(--font-head);
  font-size:26px;font-weight:700;
  color:var(--gold-light);
  margin-bottom:4px;
  line-height:1;
}
.stat-box-lbl{font-size:12px;color:var(--text-3);letter-spacing:.06em;text-transform:uppercase}

/* ═══════════════════════════════════
   WINNERS
   ═══════════════════════════════════ */
.winners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:12px;
}
.winner-card{
  display:flex;align-items:center;gap:14px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-left:3px solid var(--gold-dark);
  border-radius:var(--r-md);
  padding:14px 18px;
  transition:border-color .2s;
}
.winner-card:hover{border-left-color:var(--gold-light)}
.winner-avatar{
  width:44px;height:44px;border-radius:50%;
  background:var(--bg-3);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;flex-shrink:0;
}
.winner-info{flex:1;min-width:0}
.winner-name{font-weight:600;font-size:14px;color:var(--text-1);margin-bottom:2px}
.winner-game{font-size:12px;color:var(--text-3)}
.winner-amount{
  font-family:var(--font-head);
  font-size:18px;font-weight:700;
  color:var(--green);
  white-space:nowrap;
}

/* ═══════════════════════════════════
   HOW TO PLAY
   ═══════════════════════════════════ */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:2px;
  background:var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
  border:1px solid var(--border);
}
.step-box{
  background:var(--bg-card);
  padding:28px 22px;
  text-align:center;
  transition:background .2s;
}
.step-box:hover{background:var(--bg-hover)}
.step-num{
  width:48px;height:48px;
  background:linear-gradient(135deg,var(--gold-dark),var(--gold));
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-size:20px;font-weight:700;color:#07090f;
  margin:0 auto 16px;
}
.step-title{font-family:var(--font-head);font-size:16px;font-weight:600;color:var(--text-1);margin-bottom:8px}
.step-desc{font-size:13px;color:var(--text-2);line-height:1.6}

/* ═══════════════════════════════════
   FAQ
   ═══════════════════════════════════ */
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:8px}
.faq-item{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  overflow:hidden;
  transition:border-color .2s;
}
.faq-item.open{border-color:var(--border-gold)}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:18px 20px;
  cursor:pointer;
  font-family:var(--font-head);
  font-size:16px;font-weight:500;color:var(--text-1);
  user-select:none;
  transition:background .2s;
}
.faq-q:hover{background:var(--bg-3)}
.faq-item.open .faq-q{color:var(--gold-light)}
.faq-icon{
  width:24px;height:24px;border-radius:50%;
  background:var(--bg-3);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;color:var(--gold);
  flex-shrink:0;transition:transform .3s,background .2s;
}
.faq-item.open .faq-icon{transform:rotate(45deg);background:var(--gold-dark);border-color:var(--gold)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .35s ease;
}
.faq-item.open .faq-a{max-height:400px}
.faq-a p{
  padding:0 20px 20px;
  font-size:14px;color:var(--text-2);line-height:1.75;
}

/* ═══════════════════════════════════
   BONUS SECTION
   ═══════════════════════════════════ */
.bonus-banner{
  background:linear-gradient(135deg,#1a0d00,#0d1a00,#001020);
  border:1px solid var(--border-gold);
  border-radius:var(--r-xl);
  padding:40px 48px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;align-items:center;
  position:relative;overflow:hidden;
  box-shadow:var(--shadow-gold);
}
.bonus-banner::before{
  content:'';position:absolute;
  right:-60px;top:-60px;
  width:280px;height:280px;
  background:radial-gradient(circle,rgba(212,160,23,.15),transparent 70%);
  pointer-events:none;
}
.bonus-list{display:flex;flex-direction:column;gap:12px;margin:20px 0 28px}
.bonus-list li{
  display:flex;align-items:center;gap:10px;
  font-size:15px;color:var(--text-2);
}
.bonus-list li .b-icon{font-size:18px;flex-shrink:0}
.bonus-list li strong{color:var(--text-1)}
.bonus-badge-wrap{
  display:flex;align-items:center;justify-content:center;
}
.bonus-circle{
  width:180px;height:180px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold-dark),var(--gold-light));
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  box-shadow:0 0 50px rgba(212,160,23,.4);
  animation:pulse 2.5s ease-in-out infinite;
}
.bonus-circle .pct{
  font-family:var(--font-head);
  font-size:56px;font-weight:700;
  color:#07090f;line-height:1;
}
.bonus-circle .lbl{
  font-family:var(--font-head);
  font-size:22px;font-weight:600;
  color:#07090f;
}

/* ═══════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════ */
.final-cta{
  padding:80px 0;
  text-align:center;
  background:var(--bg-1);
  border-top:1px solid var(--border);
}
.final-cta h2{
  font-size:clamp(26px,4vw,44px);
  margin-bottom:14px;
}
.final-cta p{font-size:18px;color:var(--text-2);margin-bottom:32px}
.disclaimer{
  margin-top:24px;
  font-size:12px;color:var(--text-3);
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.footer{
  background:#000;
  border-top:1px solid var(--border);
  padding:36px 0;
}
.footer-inner{
  display:flex;flex-direction:column;align-items:center;gap:16px;
}
.footer-logo{
  font-family:var(--font-head);
  font-size:20px;font-weight:700;
  color:var(--gold);
  letter-spacing:.1em;
}
.footer-links{
  display:flex;gap:20px;flex-wrap:wrap;justify-content:center;
}
.footer-links a{
  font-size:12px;color:var(--text-3);
  transition:color .2s;
}
.footer-links a:hover{color:var(--gold)}
.footer-text{
  font-size:12px;color:var(--text-3);
  text-align:center;line-height:1.8;
  max-width:600px;
}

/* ═══════════════════════════════════
   STICKY MOBILE BAR
   ═══════════════════════════════════ */
.sticky-bar{
  display:none;
  position:fixed;bottom:0;left:0;right:0;
  background:rgba(7,9,15,.96);
  border-top:1px solid var(--border-gold);
  backdrop-filter:blur(16px);
  padding:10px 16px;
  z-index:999;
  gap:10px;
}

/* ══════════════════════════════════════
   CASINO CARDS — новые компоненты cc/cr
   ══════════════════════════════════════ */

/* TOP 1 card */
.cc{
  display:grid;
  grid-template-columns:120px 1fr 210px;
  gap:20px;
  align-items:center;
  background:var(--bg-card);
  border:1px solid var(--border-gold);
  border-radius:var(--r-lg);
  padding:24px 28px;
  margin-bottom:12px;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-gold);
}
.cc::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--gold-dark),var(--gold-light),var(--gold-dark));
}

.cc-logo img{
  width:110px;height:72px;
  object-fit:contain;
  border-radius:var(--r-sm);
  display:block;
}

.cc-info{min-width:0}

.cc-name{
  display:flex;align-items:center;gap:10px;
  font-family:var(--font-head);font-size:22px;font-weight:600;
  color:var(--text-1);margin-bottom:10px;
}
.cc-badge{
  font-family:var(--font-head);font-size:11px;font-weight:700;
  letter-spacing:.06em;
  padding:3px 10px;border-radius:var(--r-full);
  background:linear-gradient(135deg,var(--gold-dark),var(--gold-light));
  color:#07090f;white-space:nowrap;
}
.cc-bonus{
  display:inline-flex;align-items:center;gap:6px;flex-wrap:wrap;
  background:rgba(34,197,94,.1);
  border:1px solid rgba(34,197,94,.25);
  border-radius:var(--r-md);
  padding:7px 14px;
  font-size:13px;font-weight:600;color:var(--green);
  margin-bottom:12px;
  line-height:1.5;
}
.cc-bonus strong{color:#fff;font-weight:700}
.cc-tags{display:flex;gap:6px;flex-wrap:wrap}
.cc-tag{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--r-full);padding:4px 10px;
  font-size:11px;color:var(--text-2);white-space:nowrap;
}

.cc-actions{display:flex;flex-direction:column;gap:10px}
.cc-actions .btn{width:100%;justify-content:center}

/* Casino rows (2nd, 3rd) */
.cr{
  display:grid;
  grid-template-columns:36px 90px 1fr auto auto;
  gap:16px;align-items:center;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:16px 20px;
  margin-bottom:10px;
  transition:border-color .2s,background .2s;
}
.cr:last-child{margin-bottom:0}
.cr:hover{border-color:var(--border-gold);background:var(--bg-hover)}

.cr-num{
  font-family:var(--font-head);font-size:20px;font-weight:700;
  color:var(--text-3);text-align:center;
}
.cr-logo img{
  width:80px;height:50px;
  object-fit:contain;border-radius:var(--r-sm);display:block;
}
.cr-info{min-width:0}
.cr-name{font-weight:600;font-size:16px;color:var(--text-1);margin-bottom:4px}
.cr-bonus{font-size:13px;color:var(--green);font-weight:600}
.cr-rating{text-align:center}
.cr-num-val{
  display:block;
  font-family:var(--font-head);font-size:20px;font-weight:700;color:var(--gold-light);
}
.cr-lbl{font-size:10px;color:var(--text-3);letter-spacing:.04em}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

/* ── Tablet 900px ── */
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-sidebar{display:grid;grid-template-columns:1fr 1fr;gap:12px}
  .casino-card{grid-template-columns:60px 1fr;gap:14px}
  .casino-actions{grid-column:span 2}
  .bonus-banner{grid-template-columns:1fr;text-align:center;padding:28px 24px}
  .bonus-list li{justify-content:center}
  .casino-row{grid-template-columns:32px 50px 1fr;gap:10px}
  .casino-row-rating{display:none}
}

/* ── Mobile 600px ── */
@media(max-width:600px){
  :root{ --header-h: 56px }

  /* Header */
  .header-cta .btn-outline{display:none}
  .logo img{height:30px}

  /* Meta pills → горизонтальный скролл */
  .hero-meta{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:4px;
    scrollbar-width:none;
  }
  .hero-meta::-webkit-scrollbar{display:none}

  /* Hero */
  .hero{padding:16px 0 32px}
  .hero-title-block{margin-bottom:16px}
  .hero-h1{font-size:clamp(22px,7vw,32px);line-height:1.15}
  .hero-grid{gap:16px}

  /* Кнопки под фреймом → вертикально */
  .hero-play-btns{
    flex-direction:column !important;
    gap:10px !important;
  }
  .hero-play-btns .btn{
    flex:none !important;
    width:100%;
  }

  /* Sidebar → 1 col */
  .hero-sidebar{
    display:flex;flex-direction:column;gap:12px;
  }

  /* Stat card — wrap long values */
  .stat-row{
    padding:8px 12px;
    font-size:12px;
    flex-wrap:wrap;
    gap:4px;
  }
  .stat-label{flex:0 0 auto;max-width:55%}
  .stat-value{
    flex:0 0 auto;
    max-width:100%;
    text-align:right;
    word-break:break-word;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  /* Stats boxes → 3 в ряд, компактнее */
  .stats-grid{
    grid-template-columns:repeat(3,1fr);
    gap:8px;
  }
  .stat-box{padding:12px 8px}
  .stat-box-val{font-size:18px}
  .stat-box-lbl{font-size:10px}

  /* Hero CTA box */
  .hero-cta-box{padding:14px}
  .hero-cta-bonus{font-size:18px}

  /* Steps */
  .steps-grid{grid-template-columns:1fr}

  /* Casino card — мобиле: показываем лого сверху */
  .casino-card{
    grid-template-columns:1fr;
    gap:12px;
  }
  .casino-logo{
    display:flex;
    width:auto;height:auto;
    background:none;border:none;
    justify-content:flex-start;
  }
  .casino-logo img{
    height:36px;width:auto;object-fit:contain;
    border-radius:6px;
  }
  .casino-actions{min-width:auto;flex-direction:column}
  .casino-actions .btn{width:100%}

  /* Casino row — скрываем только лого-плейсхолдер, не img */
  .casino-row{grid-template-columns:28px 48px 1fr auto;gap:8px;padding:10px 12px}
  .casino-row-logo{
    width:48px;height:36px;
    background:none;border:none;padding:2px;
  }
  .casino-row-logo img{width:44px;height:32px;object-fit:contain;border-radius:4px}
  .casino-row-rating{display:none}

  /* Bonus banner */
  .bonus-badge-wrap{display:none}
  .bonus-banner{padding:24px 20px}

  /* Winners */
  .winners-grid{grid-template-columns:1fr}
  .winner-amount{font-size:15px}

  /* FAQ */
  .faq-q{font-size:13px;padding:14px 16px}
  .faq-a p{padding:0 16px 16px;font-size:13px}

  /* Section */
  .section-wrap{padding:36px 0}
  .section-h2{font-size:18px}

  /* Final CTA */
  .final-cta{padding:48px 0}
  .final-cta p{font-size:15px}

  /* Sticky bar */
  .sticky-bar{display:flex}
  body{padding-bottom:calc(68px + env(safe-area-inset-bottom))}

  /* Review grids */
  .review-two-col{grid-template-columns:1fr}
  .pros-cons-grid{grid-template-columns:1fr}

  /* ── Casino cc/cr mobile ── */
  .cc{
    grid-template-columns:1fr;
    padding:16px;
    gap:14px;
  }
  .cc-logo{display:flex;align-items:center;gap:12px}
  .cc-logo img{width:80px;height:52px}
  /* Показываем имя рядом с лого на мобиле */
  .cc-logo::after{
    content:attr(data-name);
    font-family:var(--font-head);font-size:18px;font-weight:600;color:var(--text-1);
  }
  .cc-name{font-size:18px;margin-bottom:8px}
  .cc-bonus{font-size:12px;padding:6px 12px}
  .cc-actions .btn{font-size:13px}

  .cr{
    grid-template-columns:28px 64px 1fr auto;
    gap:10px;padding:12px 14px;
  }
  .cr-num{font-size:16px}
  .cr-logo img{width:64px;height:40px}
  .cr-name{font-size:14px}
  .cr-bonus{font-size:12px}
  .cr-rating{display:none}

  /* Slot frame */
  .slot-title-art{font-size:clamp(26px,8vw,38px)}
  .slot-frame-badges{bottom:10px;left:10px;right:10px;gap:6px}
  .frame-badge{font-size:11px;padding:3px 10px}

  /* Sticky bar safe area */
  .sticky-bar{
    padding:10px 16px;
    padding-bottom:calc(10px + env(safe-area-inset-bottom));
  }
}

/* ─── REVIEW GRIDS ─── */
.review-two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:0;
}
.pros-cons-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

/* ─── SLOT FRAME IMAGE ─── */
.slot-img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center top;
  border-radius:var(--r-lg);
  filter:blur(4px);
  transform:scale(1.08);
}
/* виньетка поверх — скрывает края и добавляет глубину */
.slot-frame::after{
  content:'';
  position:absolute;inset:0;
  border-radius:var(--r-lg);
  background:
    radial-gradient(ellipse at 50% 50%,
      transparent 35%,
      rgba(7,9,15,.65) 100%);
  pointer-events:none;
  z-index:1;
}
/* бейджи и оверлей должны быть выше виньетки */
.slot-frame-badges{z-index:2}
.play-overlay{z-index:3;opacity:1}
.slot-frame:hover .play-overlay{opacity:1}

/* ─── INFO BLOCK WITH SIDE IMAGE ─── */
.info-with-img{
  display:grid;
  grid-template-columns:1fr 280px;
  gap:24px;
  align-items:start;
}
.info-with-img.img-left{
  grid-template-columns:280px 1fr;
}
.info-with-img.img-left .info-img{order:-1}
.info-img{
  position:relative;
  border-radius:var(--r-md);
  overflow:hidden;
  border:1px solid var(--border-gold);
  box-shadow:var(--shadow-gold);
}
.info-img img{
  width:100%;height:auto;
  display:block;
  border-radius:var(--r-md);
}
.info-img-caption{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(to top,rgba(7,9,15,.9),transparent);
  padding:20px 12px 10px;
  font-size:11px;color:var(--text-2);
  text-align:center;
  letter-spacing:.06em;
}

/* Bonus round image — tall portrait */
.info-img.portrait{
  max-width:220px;
  margin:0 auto;
}
.info-with-img.bonus-layout{
  grid-template-columns:1fr 220px;
  align-items:center;
}

/* ─── SCREENSHOTS GALLERY ─── */
.screenshots-section{background:var(--bg-0)}
.screenshots-track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:var(--border-gold) transparent;
  padding-bottom:12px;
  cursor:grab;
}
.screenshots-track::-webkit-scrollbar{height:4px}
.screenshots-track::-webkit-scrollbar-track{background:transparent}
.screenshots-track::-webkit-scrollbar-thumb{background:var(--border-gold);border-radius:4px}
.screenshot-item{
  flex:0 0 auto;
  width:280px;
  border-radius:var(--r-md);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--bg-card);
  transition:border-color .2s,transform .2s;
  position:relative;
}
.screenshot-item:hover{
  border-color:var(--border-gold);
  transform:translateY(-4px);
}
.screenshot-item img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}
.screenshot-caption{
  padding:8px 12px;
  font-size:12px;
  color:var(--text-3);
  text-align:center;
  border-top:1px solid var(--border);
}

/* Responsive for new components */
@media(max-width:900px){
  .info-with-img{grid-template-columns:1fr}
  .info-with-img.bonus-layout{grid-template-columns:1fr}
  .info-img.portrait{max-width:180px}
  .screenshot-item{width:240px}
}
@media(max-width:600px){
  .info-with-img.img-left .info-img{order:0}
  .info-img.portrait{max-width:160px}
  .screenshot-item{width:200px}
  .review-two-col{grid-template-columns:1fr}
  .pros-cons-grid{grid-template-columns:1fr}
}

/* ═══════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════ */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(16px)}
  to{opacity:1;transform:translateY(0)}
}
.fade-up{animation:fadeUp .5s ease both}
.fade-up-2{animation:fadeUp .5s ease .1s both}
.fade-up-3{animation:fadeUp .5s ease .2s both}

@keyframes shimmer{
  0%{background-position:-400px 0}
  100%{background-position:400px 0}
}
.shimmer{
  background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,.04) 50%,transparent 100%);
  background-size:800px 100%;
  animation:shimmer 2.4s linear infinite;
}