:root {
  --gold: #F7B636;
  --gold-light: #FFD166;
  --gold-dim: #C4921A;
  --blue: #1930AD;
  --blue-dark: #131F60;
  --dark: #0A0E1A;
  --dark-2: #0F1424;
  --dark-3: #151B2E;
  --dark-4: #1C2340;
  --dark-5: #252D4A;
  --text: #E8ECF4;
  --text-muted: #9AA3BC;
  --text-dim: #6B7590;
  --accent: #F7B636;
  --danger: #E05A4A;
  --green: #3DD68C;
  --radius: 8px;
  --radius-lg: 14px;
  --font: 'Montserrat', 'Segoe UI', sans-serif;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 4px 24px rgba(247, 182, 54, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1 {
  font-family: var(--font);
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  margin: 3rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--dark-5);
}
h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: #fff;
  margin: 2rem 0 0.8rem;
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin: 1.5rem 0 0.6rem;
}
p { margin-bottom: 1.1rem; color: var(--text); }

/* Layout */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 2.5rem 0; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.95);
  border-bottom: 1px solid var(--dark-5);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 28px; width: auto; }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--blue-dark);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.84rem;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.header-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

/* Geo switcher */
.geo-switcher {
  position: relative;
}
.geo-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.2s;
}
.geo-switcher-btn:hover { border-color: var(--gold-dim); color: var(--text); }
.geo-switcher-btn svg { width: 12px; height: 12px; transition: transform 0.2s; }
.geo-switcher.open .geo-switcher-btn svg { transform: rotate(180deg); }
.geo-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--dark-2);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow);
  z-index: 110;
}
.geo-switcher.open .geo-dropdown { display: block; }
.geo-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.geo-dropdown a:hover { background: var(--dark-4); color: var(--gold); }
.geo-dropdown a.active { background: rgba(247, 182, 54, 0.1); color: var(--gold); }
.geo-flag { font-size: 1.1rem; line-height: 1; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-5);
  padding: 16px 20px;
  gap: 14px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-muted); font-size: 0.95rem; padding: 6px 0; }
.mobile-geo { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px; border-top: 1px solid var(--dark-5); }
.mobile-geo a {
  padding: 6px 12px;
  background: var(--dark-3);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
}
.mobile-geo a.active { background: rgba(247, 182, 54, 0.15); color: var(--gold); }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.8rem; color: var(--text-dim); padding: 12px 0 0; }
.breadcrumbs a { color: var(--gold-dim); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 60px;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--dark) 45%, var(--dark-2) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(247, 182, 54, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(25, 48, 173, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 182, 54, 0.1);
  border: 1px solid rgba(247, 182, 54, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 .highlight { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #E5A020 100%);
  color: var(--blue-dark);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  min-height: 50px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(247, 182, 54, 0.4);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 50px;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(247, 182, 54, 0.08);
  color: var(--gold-light);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.stat-card {
  background: rgba(21, 27, 46, 0.7);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: rgba(247, 182, 54, 0.3); }
.stat-card .val {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-card .lbl { font-size: 0.74rem; color: var(--text-dim); margin-top: 6px; font-weight: 500; }

.hero-img-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--dark-5);
  box-shadow: var(--shadow);
}
.hero-img-block img { width: 100%; height: 100%; object-fit: cover; }
.hero-bonus-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(10, 14, 26, 0.92);
  border: 1px solid rgba(247, 182, 54, 0.35);
  border-radius: var(--radius);
  padding: 14px 18px;
  backdrop-filter: blur(8px);
}
.hero-bonus-tag .bonus-label { font-size: 0.72rem; color: var(--text-dim); font-weight: 500; }
.hero-bonus-tag .bonus-val { font-size: 1.25rem; font-weight: 700; color: var(--gold); }

/* Author */
.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 2.5rem 0;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  border: 2px solid rgba(247, 182, 54, 0.4);
}
.author-name { font-weight: 700; color: #fff; font-size: 1rem; }
.author-role { font-size: 0.8rem; color: var(--gold); margin: 2px 0 8px; font-weight: 500; }
.author-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 2rem 0; }
.pros-block, .cons-block {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--dark-5);
}
.pros-block { border-top: 3px solid var(--green); }
.cons-block { border-top: 3px solid var(--danger); }
.pros-block h4, .cons-block h4 { margin-top: 0; }
.pros-block h4 { color: var(--green); }
.cons-block h4 { color: var(--danger); }
.pros-block ul, .cons-block ul { list-style: none; padding: 0; }
.pros-block li, .cons-block li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--dark-5);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pros-block li:last-child, .cons-block li:last-child { border-bottom: none; }
.pros-block li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons-block li::before { content: '✕'; color: var(--danger); font-weight: 700; flex-shrink: 0; }

/* Info block */
.info-block {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 1.5rem 0;
}
.info-block p:last-child { margin-bottom: 0; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius-lg); border: 1px solid var(--dark-5); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead tr { background: var(--dark-4); }
thead th {
  text-align: left;
  padding: 13px 16px;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--dark-5);
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--dark-5); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(247, 182, 54, 0.04); }
tbody td { padding: 12px 16px; color: var(--text-muted); vertical-align: top; }
tbody td:first-child { color: var(--text); font-weight: 500; }
.badge-yes { color: var(--green); font-weight: 600; }
.badge-no { color: var(--danger); }

/* Steps */
.steps { list-style: none; padding: 0; counter-reset: step; margin: 1.5rem 0; }
.steps li {
  counter-increment: step;
  padding: 16px 16px 16px 56px;
  position: relative;
  border-bottom: 1px solid var(--dark-5);
  color: var(--text-muted);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 14px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-dark);
}

/* Bullets */
.bullet-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.bullet-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Video */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  border: 1px solid var(--dark-5);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Image */
.img-block {
  margin: 2rem auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-5);
  max-width: 800px;
}
.img-caption {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 10px 16px;
  background: var(--dark-3);
  text-align: center;
}

/* Slots grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin: 1.5rem 0;
}
.slot-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: border-color 0.2s, transform 0.2s;
}
.slot-card:hover { border-color: rgba(247, 182, 54, 0.4); transform: translateY(-2px); }
.slot-card .rank { font-size: 0.7rem; color: var(--gold-dim); margin-bottom: 4px; font-weight: 600; }
.slot-card .name { font-weight: 600; color: var(--text); font-size: 0.88rem; }
.slot-card .provider { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--dark-5); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  gap: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-weight: 400;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* Responsible gaming */
.rg-block {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 1.5rem 0;
}
.rg-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.rg-link {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--dark-5);
  border-radius: var(--radius);
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.rg-link:hover { border-color: var(--gold-dim); color: var(--gold); }

/* Bonus bar */
.bonus-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(247, 182, 54, 0.35);
  padding: 12px 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(0);
  transition: transform 0.3s;
  backdrop-filter: blur(8px);
}
.bonus-bar.hidden { transform: translateY(100%); }
.bonus-bar-text { font-size: 0.85rem; color: var(--text-muted); }
.bonus-bar-text strong { color: var(--gold); }
.bonus-bar-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--blue-dark);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.bonus-bar-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* Footer */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-5);
  padding: 48px 0 120px;
  margin-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}
.footer-logo img { height: 26px; margin-bottom: 14px; }
.footer-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: var(--text-dim);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--gold); }
.footer-geo { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-geo a {
  display: inline-block;
  padding: 5px 10px;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
}
.footer-geo a:hover { border-color: var(--gold-dim); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--dark-5);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--text-dim);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-dim);
  float: right;
  margin-left: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav, .header-cta, .geo-switcher { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-img-block { display: none; }
  .hero { padding: 48px 0 40px; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .bonus-bar { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; }
}
