﻿:root {
  --bg:       #0F0F0F;
  --bg2:      #141414;
  --card:     #1E1E1E;
  --card2:    #252525;
  --acc:      #CAFF00;
  --acc-h:    #B0E000;
  --cyan:     #2EE8FF;
  --gold:     #FFB84D;
  --violet:   #A87CFF;
  --green:    #34D399;
  --txt:      #FFFFFF;
  --txt2:     #CCCCCC;
  --muted:    #888888;
  --border:   rgba(255,255,255,0.08);
  --border-a: rgba(202,255,0,0.3);
  --shadow:   0 4px 24px rgba(0,0,0,0.6);
  --shadow-g: 0 0 28px rgba(202,255,0,0.2);
  --r4:  4px;
  --r8:  8px;
  --r12: 12px;
  --r20: 20px;
  --r50: 50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background:
    linear-gradient(180deg, rgba(46,232,255,0.035) 0%, rgba(15,15,15,0) 360px),
    linear-gradient(180deg, #090A0A 0%, var(--bg) 46%, #080808 100%);
  color: var(--txt);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(202,255,0,0.05), transparent 24%, transparent 76%, rgba(46,232,255,0.04)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 84px);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--acc) 0%, #E5FF66 100%);
  color: #0F0F0F;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--r50);
  border: 1px solid rgba(255,255,255,0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, filter 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--acc-h) 0%, #F2FF9A 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-g);
  filter: saturate(1.08);
}
.btn-primary:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--border-a);
  color: var(--acc);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--r50);
  background: rgba(255,255,255,0.025);
  transition: background 0.2s, border-color 0.2s, transform 0.15s, color 0.2s;
}
.btn-outline:hover {
  background: rgba(202,255,0,0.08);
  border-color: var(--acc);
  transform: translateY(-2px);
}
.btn-outline:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

.btn-full { width: 100%; text-align: center; }
.btn-lg { padding: 15px 36px; font-size: 16px; }

.sec-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
  line-height: 1.18;
  position: relative;
}
.sec-title::after {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 10px;
  border-radius: var(--r50);
  background: linear-gradient(90deg, var(--acc), var(--cyan));
}
.sec-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,10,10,0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  padding: 8px 12px;
  border: 1px solid rgba(202,255,0,0.18);
  border-radius: var(--r8);
  background: rgba(202,255,0,0.05);
}
.logo .logo-text { color: var(--acc); }
.logo .logo-kz   { color: var(--txt2); font-size: 13px; font-weight: 600; }
.logo-footer { font-size: 22px; margin-bottom: 14px; display: inline-block; }
.logo-footer .logo-text { color: var(--acc); }

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt2);
  padding: 22px 0;
  transition: color 0.15s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 2px;
  background: linear-gradient(90deg, var(--acc), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--acc); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; border-radius: 2px; }

.btn-header-cta {
  background: linear-gradient(135deg, var(--acc), #E6FF72);
  color: #0F0F0F;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: var(--r50);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.btn-header-cta:hover { background: var(--acc-h); transform: translateY(-1px); }
.btn-header-cta:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; border-radius: 4px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--txt2);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--acc); }
.mobile-nav-cta {
  margin-top: 10px;
  background: var(--acc);
  color: #0F0F0F !important;
  font-weight: 700;
  padding: 11px 0 !important;
  border-radius: var(--r50);
  text-align: center;
  border-bottom: none !important;
}

.hero {
  background:
    linear-gradient(120deg, rgba(202,255,0,0.12) 0%, transparent 28%),
    linear-gradient(220deg, rgba(46,232,255,0.08) 0%, transparent 34%),
    linear-gradient(135deg, #0B0C0C 0%, #171A15 58%, #0B0B0B 100%);
  padding: 78px 24px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, transparent 0, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.6), transparent 72%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc), var(--cyan), transparent);
  opacity: 0.6;
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-left { animation: fadeUp 0.55s ease both; }
.hero-right { animation: fadeUp 0.55s 0.15s ease both; }

.hero-brand-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.hero-accent { color: var(--acc); }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.stars { color: var(--acc); font-size: 18px; letter-spacing: 2px; }
.rating-val { font-size: 20px; font-weight: 700; color: var(--acc); }
.rating-count { font-size: 14px; color: var(--muted); }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--txt2);
  font-size: 13px;
  padding: 5px 13px;
  border-radius: var(--r50);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-disclaimer {
  font-size: 12px;
  color: var(--muted);
}

.hero-games {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r20);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    repeating-linear-gradient(135deg, rgba(202,255,0,0.04) 0, rgba(202,255,0,0.04) 1px, transparent 1px, transparent 18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 20px 70px rgba(0,0,0,0.35);
}
.hg-card {
  position: absolute;
  border-radius: var(--r12);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, opacity 0.3s, z-index 0s;
}
.hg-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hg-back {
  width: 220px;
  height: 140px;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  z-index: 1;
  opacity: 0.75;
}
.hg-main {
  width: 278px;
  height: 176px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-color: var(--border-a);
  box-shadow: var(--shadow), var(--shadow-g);
}
.hg-front {
  width: 220px;
  height: 140px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  z-index: 2;
  opacity: 0.75;
}
.hg-back:hover  { transform: translateY(-50%) scale(1.05) rotate(0deg); z-index: 10; opacity: 1; }
.hg-main:hover  { transform: translate(-50%, -55%) scale(1.05); }
.hg-front:hover { transform: translateY(-50%) scale(1.05) rotate(0deg); z-index: 10; opacity: 1; }

.hg-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--acc);
  color: #0F0F0F;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: var(--r50);
  letter-spacing: 0.5px;
}

.trust-strip {
  background:
    linear-gradient(90deg, rgba(202,255,0,0.05), rgba(46,232,255,0.035), rgba(168,124,255,0.04)),
    var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 52px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--txt2);
  white-space: nowrap;
  transition: color 0.2s, transform 0.2s;
}
.trust-item:hover { color: var(--txt); transform: translateY(-1px); }
.trust-icon { font-size: 16px; }
.trust-div {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

.promo-bar {
  background:
    linear-gradient(110deg, rgba(202,255,0,0.16) 0%, transparent 20%, transparent 80%, rgba(46,232,255,0.12) 100%),
    linear-gradient(90deg, #171917 0%, #22261D 50%, #171917 100%);
  border-bottom: 1px solid var(--border-a);
}
.promo-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.promo-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--acc);
  white-space: nowrap;
}
.promo-sep { color: var(--muted); }
.promo-text { font-size: 14px; color: var(--txt2); flex: 1; }
.promo-btn {
  background: var(--acc);
  color: #0F0F0F;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: var(--r50);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.promo-btn:hover { background: var(--acc-h); transform: translateY(-1px); }
.promo-btn:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

.bonuses-section {
  padding: 64px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 180px),
    var(--bg2);
}
.bonuses-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
.bonus-main-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(202,255,0,0.14), transparent 45%),
    var(--card);
  border: 1px solid var(--border-a);
  border-radius: var(--r12);
  padding: 32px 28px;
  box-shadow: var(--shadow-g);
}
.bmc-top {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.bmc-percent {
  font-size: 64px;
  font-weight: 900;
  color: var(--acc);
  line-height: 1;
}
.bmc-plus { font-size: 28px; font-weight: 700; color: var(--acc); }
.bmc-label { font-size: 16px; font-weight: 600; color: var(--txt); margin-bottom: 12px; }
.bmc-desc { font-size: 13px; color: var(--txt2); margin-bottom: 22px; line-height: 1.5; }
.bmc-note { margin-top: 12px; font-size: 11px; color: var(--muted); line-height: 1.4; }

.bonus-details-col {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
    var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  overflow: hidden;
}
.bonus-tabs { display: flex; border-bottom: 1px solid var(--border); }
.tab-btn {
  flex: 1;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.tab-btn.active { color: var(--acc); border-bottom-color: var(--acc); }
.tab-btn:hover:not(.active) { color: var(--txt2); }
.tab-btn:focus-visible { outline: 2px solid var(--acc); outline-offset: -2px; }

.tab-panel { display: none; padding: 24px; }
.tab-panel.active { display: block; }

.bonus-list { display: flex; flex-direction: column; gap: 12px; }
.bonus-list li {
  font-size: 14px;
  color: var(--txt2);
  padding-left: 20px;
  position: relative;
}
.bonus-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--acc);
  font-weight: 700;
}

.slots-section { padding: 64px 0; background: var(--bg); }
.slots-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.slots-header .sec-title { margin-bottom: 0; }
.slot-filter { display: flex; gap: 6px; flex-wrap: wrap; }
.sf-btn {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r50);
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.sf-btn.active { background: var(--acc); color: #0F0F0F; border-color: var(--acc); font-weight: 700; }
.sf-btn:hover:not(.active) { color: var(--txt); border-color: rgba(255,255,255,0.2); }
.sf-btn:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.slot-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
    var(--card);
  border-radius: var(--r12);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.slot-card:nth-child(3n+1) { border-top: 2px solid var(--acc); }
.slot-card:nth-child(3n+2) { border-top: 2px solid var(--cyan); }
.slot-card:nth-child(3n+3) { border-top: 2px solid var(--gold); }
.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--shadow-g);
  border-color: var(--border-a);
}
.slot-card.hidden { display: none; }
.slot-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.slot-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.slot-card:hover .slot-img-wrap img { transform: scale(1.05); }
.slot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,8,0.2), rgba(5,7,8,0.82));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.slot-card:hover .slot-overlay { opacity: 1; }
.btn-play {
  background: var(--acc);
  color: #0F0F0F;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: var(--r50);
  transition: background 0.15s, transform 0.15s;
}
.btn-play:hover { background: var(--acc-h); transform: scale(1.05); }
.btn-play:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

.slot-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  gap: 8px;
}
.slot-name { font-size: 13px; font-weight: 600; color: var(--txt); }
.slot-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  padding: 2px 8px;
  border-radius: var(--r50);
  flex-shrink: 0;
}
.popular-badge { background: rgba(202,255,0,0.12); color: var(--acc); }
.new-badge { background: rgba(52,211,153,0.12); color: #34d399; }
.slots-more { text-align: center; margin-top: 32px; }

.how-section {
  padding: 60px 0;
  background:
    linear-gradient(135deg, rgba(46,232,255,0.04), transparent 42%),
    var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 220px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r12);
  background: rgba(255,255,255,0.035);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.step-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-a);
  background: rgba(255,255,255,0.055);
}
.step-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--acc);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--txt2); line-height: 1.5; }
.step-arrow { font-size: 26px; color: var(--border-a); padding-top: 8px; flex-shrink: 0; }

.review-slider-section { padding: 64px 0; background: var(--bg); }
.slider-outer { position: relative; display: flex; align-items: center; gap: 12px; }
.slider-viewport { flex: 1; overflow: hidden; border-radius: var(--r12); }
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.sl-card {
  min-width: 280px;
  flex-shrink: 0;
  background: var(--card);
  border-radius: var(--r8);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.sl-card:hover { border-color: var(--border-a); transform: translateY(-3px); }
.sl-card img { width: 100%; height: 160px; object-fit: cover; }
.sl-name { padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--txt2); }
.sl-arrow {
  width: 42px;
  height: 42px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 24px;
  color: var(--txt2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  flex-shrink: 0;
  line-height: 1;
}
.sl-arrow:hover { background: var(--acc); color: #0F0F0F; transform: scale(1.08); }
.sl-arrow:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }
.sl-dots { display: flex; justify-content: center; gap: 7px; margin-top: 20px; }
.sl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.15s, width 0.2s;
}
.sl-dot.active { background: var(--acc); width: 20px; border-radius: 4px; }
.sl-dot:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }

.article-section {
  padding: 64px 0;
  background:
    linear-gradient(180deg, rgba(202,255,0,0.035), transparent 240px),
    var(--bg2);
  border-top: 1px solid var(--border);
}
.article-cols {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.article-main h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--txt);
  margin: 28px 0 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.article-main h3:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.article-main p { font-size: 15px; color: var(--txt2); line-height: 1.7; margin-bottom: 14px; }
.art-list { margin: 0 0 14px 0; display: flex; flex-direction: column; gap: 6px; }
.art-list li { font-size: 15px; color: var(--txt2); padding-left: 18px; position: relative; }
.art-list li::before { content: '—'; position: absolute; left: 0; color: var(--acc); }

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  border-radius: var(--r8);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}
.cmp-table thead th {
  background: var(--card2);
  color: var(--acc);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid var(--border-a);
}
.cmp-table tbody td {
  padding: 11px 14px;
  color: var(--txt2);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }
.cmp-table tbody td:first-child { color: var(--txt); font-weight: 600; }

.disclaimer-box {
  background:
    linear-gradient(90deg, rgba(202,255,0,0.07), transparent),
    var(--card);
  border-left: 3px solid var(--border-a);
  border-radius: 0 var(--r8) var(--r8) 0;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 24px;
}

.aside-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: 22px 20px;
  margin-bottom: 20px;
  position: sticky;
  top: 80px;
}
.aside-card:first-child { border-color: rgba(202,255,0,0.18); }
.aside-card:nth-child(2) { border-color: rgba(46,232,255,0.16); }
.aside-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.aside-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.aside-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--txt2);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.aside-list li:last-child { border-bottom: none; padding-bottom: 0; }
.aside-list li span:last-child { color: var(--acc); font-weight: 600; }

.aside-rating { text-align: center; }
.aside-score { font-size: 56px; font-weight: 900; color: var(--acc); line-height: 1; margin-bottom: 6px; }
.aside-stars { font-size: 20px; color: var(--acc); letter-spacing: 3px; margin-bottom: 18px; }
.aside-cats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; text-align: left; }
.aside-cat {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--txt2);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.aside-cat:last-child { border-bottom: none; }
.cat-val { color: var(--acc); font-weight: 700; }
.aside-note { font-size: 11px; color: var(--muted); line-height: 1.4; }

.faq-section { padding: 64px 0; background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r8);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-a); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--txt);
  text-align: left;
  background: transparent;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--acc); }
.faq-q:focus-visible { outline: 2px solid var(--acc); outline-offset: -2px; }
.faq-ico {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, transform 0.3s;
}
.faq-ico::before,
.faq-ico::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: background 0.2s, transform 0.3s;
}
.faq-ico::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-ico::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-ico { border-color: var(--acc); transform: rotate(45deg); }
.faq-item.open .faq-ico::before,
.faq-item.open .faq-ico::after { background: var(--acc); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 14px 20px 18px;
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.6;
  border-top: 1px solid var(--border);
}

.cta-bottom {
  padding: 80px 0;
  background:
    linear-gradient(115deg, rgba(202,255,0,0.12), transparent 34%),
    linear-gradient(245deg, rgba(168,124,255,0.11), transparent 34%),
    linear-gradient(135deg, #101210 0%, #191B18 50%, #0E0F0F 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-bottom-inner { max-width: 600px; margin: 0 auto; }
.cta-title { font-size: 36px; font-weight: 800; color: var(--txt); margin-bottom: 12px; line-height: 1.2; }
.cta-sub { font-size: 16px; color: var(--txt2); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cta-note { font-size: 12px; color: var(--muted); }

.site-footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent),
    var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-about { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.badge18 {
  display: inline-block;
  background: rgba(202,255,0,0.12);
  border: 1px solid var(--border-a);
  color: var(--acc);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r4);
}
.footer-nav-title { font-size: 13px; font-weight: 700; color: var(--txt); margin-bottom: 14px; letter-spacing: 0.5px; }
.footer-nav ul,
.footer-info ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav li,
.footer-info li { font-size: 13px; color: var(--muted); }
.footer-nav a,
.footer-info a { color: var(--muted); transition: color 0.15s; }
.footer-nav a:hover,
.footer-info a:hover { color: var(--acc); }
.footer-nav a:focus-visible,
.footer-info a:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; border-radius: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: 12px;
  color: var(--muted);
}
.footer-disc { max-width: 540px; line-height: 1.5; }

@media (max-width: 1024px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .article-cols { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .bonuses-layout { grid-template-columns: 1fr; }
  .bonus-main-card { max-width: 400px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-header-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .hero { padding: 40px 20px 36px; }
  .hero-container { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { display: flex; justify-content: center; }
  .hero-games { height: 200px; width: 320px; }
  .hg-main  { width: 190px; height: 121px; }
  .hg-back  { width: 158px; height: 101px; left: 0; }
  .hg-front { width: 158px; height: 101px; right: 0; }
  .hero-title { font-size: 38px; }

  .trust-inner { gap: 0; }
  .trust-item  { padding: 10px 12px; font-size: 14px; }

  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .slots-header { flex-direction: column; align-items: flex-start; }

  .steps-row { flex-direction: column; gap: 24px; }
  .step-arrow { display: none; }

  .sl-card { min-width: 240px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .cta-title { font-size: 26px; }
  .sec-title { font-size: 22px; }

  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-games { width: 280px; }
  .hg-main  { width: 160px; height: 102px; }
  .hg-back  { width: 130px; height: 83px; }
  .hg-front { width: 130px; height: 83px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }

  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-tabs { flex-direction: column; }

  .trust-div { display: none; }
  .trust-inner { flex-wrap: wrap; }
  .trust-item { width: 50%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline { width: 100%; text-align: center; }

  .sl-card { min-width: 200px; }

  .cmp-table { font-size: 12px; }
  .cmp-table thead th,
  .cmp-table tbody td { padding: 9px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
