/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #E8192C;
  --red-dark:   #C4121F;
  --red-light:  #FF3347;
  --blue-btn:   #00AAFF;
  --blue-dark:  #0088CC;
  --bg-dark:    #0F0F1A;
  --bg-card:    #1A1A2E;
  --bg-nav:     #16162A;
  --surface:    #22223A;
  --gold:       #F5B400;
  --gold-light: #FFD000;
  --text-white: #FFFFFF;
  --text-muted: #A0A0B8;
  --text-sub:   #6E6E90;
  --border:     #2E2E4A;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-card: 0 4px 24px rgba(0,0,0,.45);
  --shadow-btn:  0 4px 16px rgba(232,25,44,.4);
  --transition:  .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img.logo-img {
  height: 36px;
  width: auto;
}
.logo-svg {
  display: block;
  height: 34px;
  width: auto;
}
.nav-logo span {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--red);
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(232,25,44,.1);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-white);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232,25,44,.08);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,25,44,.5);
  color: #fff;
}

.btn-blue {
  background: var(--blue-btn);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,170,255,.35);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #1A1A1A;
  box-shadow: 0 4px 16px rgba(245,180,0,.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: #1A1A1A;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, #1a0005 0%, #2d0009 30%, #1a0520 60%, #0a0a1a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-circles::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(232,25,44,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg-circles::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -150px; left: 5%;
  background: radial-gradient(circle, rgba(0,170,255,.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,25,44,.15);
  border: 1px solid rgba(232,25,44,.35);
  color: var(--red-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-badge::before { content: '⚡'; }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.1;
}
.hero-title .red { color: var(--red); }
.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-bonus-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(232,25,44,.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.bonus-item { text-align: center; }
.bonus-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.bonus-label {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}
.bonus-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

/* Trust bar */
.trust-bar {
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-muted);
}
.trust-item .icon {
  font-size: 1.3rem;
}
.trust-item strong { color: var(--text-white); }

/* Game filters */
.games-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
}
.section-title span { color: var(--red); }
.section-link {
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-link:hover { color: var(--red); }

.game-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 2px 12px rgba(232,25,44,.4);
}

/* Game grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 3/4;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,.6);
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 1;
}
.game-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-play { opacity: 1; }
.play-btn-circle {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 0 4px rgba(232,25,44,.3);
}
.game-name {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider {
  font-size: .7rem;
  color: var(--text-sub);
}
.game-badge {
  position: absolute;
  top: 8px; left: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-exclusive { background: #7B2FFF; color: #fff; }
.badge-drops { background: var(--gold); color: #1A1A1A; }
.badge-new { background: var(--red); color: #fff; }
.badge-hot { background: #FF6B00; color: #fff; }

/* Bonus section */
.bonus-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}
.bonus-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bonus-content .section-title { margin-bottom: 16px; }
.bonus-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: .95rem;
  line-height: 1.7;
}
.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--transition);
}
.bonus-card:hover { border-color: var(--red); }
.bonus-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.bonus-card-info {}
.bonus-card-title {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 2px;
}
.bonus-card-text {
  font-size: .82rem;
  color: var(--text-muted);
}

/* Providers */
.providers-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}
.providers-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.provider-logo {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.provider-logo:hover {
  color: var(--text-white);
  border-color: var(--red);
  background: rgba(232,25,44,.08);
}

/* USP section */
.usp-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 60px;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.usp-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}
.usp-icon { font-size: 2.2rem; margin-bottom: 14px; }
.usp-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.usp-text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SEO block */
.seo-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px;
}
.seo-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.seo-block h2 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.seo-block h3 {
  margin: 20px 0 10px;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.seo-block p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.seo-block ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
}
.seo-block ul li { margin-bottom: 4px; }
.seo-toggle-btn {
  background: transparent;
  border: none;
  color: var(--red);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  margin-top: 12px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.seo-content-extra { display: none; }
.seo-content-extra.open { display: block; }

/* Footer */
.site-footer {
  background: #09090F;
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img { height: 32px; }
.footer-logo span {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--red);
  text-transform: uppercase;
}
.footer-desc {
  font-size: .85rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: .8rem;
  color: var(--text-muted);
}
.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-sub);
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: .78rem;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 700px;
}
.footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.payment-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* Diagnostic section */
.diagnostic-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.diag-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.diag-subtitle {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 28px;
}
.diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.diag-card {
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.diag-bad {
  background: rgba(232,25,44,.06);
  border: 1px solid rgba(232,25,44,.25);
}
.diag-good {
  background: rgba(0,200,83,.06);
  border: 1px solid rgba(0,200,83,.25);
}
.diag-icon { font-size: 2rem; margin-bottom: 10px; }
.diag-label {
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.diag-bad .diag-label  { color: var(--red); }
.diag-good .diag-label { color: #00C853; }
.diag-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.diag-list li {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.diag-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-sub);
}

/* Diagnostic flow */
.diag-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flow-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.flow-symptom {
  background: rgba(232,25,44,.1);
  border-bottom: 1px solid rgba(232,25,44,.2);
  padding: 14px 20px;
  font-weight: 700;
  font-size: .92rem;
  color: #FF8090;
}
.flow-causes {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-card);
}
.flow-cause {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.flow-cause strong { color: var(--text-white); }
.flow-solution {
  margin-top: 6px;
  padding: 8px 12px;
  background: rgba(0,200,83,.07);
  border-left: 3px solid #00C853;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .85rem;
  color: #80EFAA;
}

/* Score bar */
.score-bar-wrap {
  margin: 6px 0;
}
.score-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.score-bar-track {
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--red);
  transition: width .6s ease;
}
.score-bar-fill.gold { background: var(--gold); }
.score-bar-fill.green { background: #00C853; }

@media (max-width: 768px) {
  .diag-grid { grid-template-columns: 1fr; }
}

/* RG bar */
.rg-bar {
  background: #07070E;
  padding: 12px 24px;
  text-align: center;
  font-size: .75rem;
  color: var(--text-sub);
  border-top: 1px solid var(--border);
}
.rg-bar a { color: var(--text-muted); text-decoration: underline; }
.rg-bar a:hover { color: var(--red); }

/* Review page */
.review-hero {
  background: linear-gradient(135deg, #140008 0%, #1E0630 50%, #0D0D20 100%);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}
.review-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.review-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.review-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .8rem;
  color: var(--text-sub);
  margin-bottom: 20px;
}
.review-breadcrumb a { color: var(--text-muted); }
.review-breadcrumb a:hover { color: var(--red); }
.review-breadcrumb span { color: var(--text-sub); }

.review-title-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.review-casino-logo {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}
.review-title-info h1 { margin-bottom: 6px; }
.review-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,180,0,.15);
  border: 1px solid rgba(245,180,0,.3);
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold);
}
.review-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .78rem;
  color: var(--text-muted);
}
.review-tag.green { border-color: #00C853; color: #00C853; background: rgba(0,200,83,.1); }
.review-tag.red { border-color: var(--red); color: var(--red); background: rgba(232,25,44,.1); }

/* Score Box */
.score-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 28px 0;
}
.score-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.score-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.score-val.green { color: #00C853; }
.score-val.red { color: var(--red); }
.score-label {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* Review Content */
.review-layout {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.review-main {}
.review-sidebar {}

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
}
.pros { border: 1px solid rgba(0,200,83,.3); }
.cons { border: 1px solid rgba(232,25,44,.3); }
.pros-cons-title {
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pros .pros-cons-title { color: #00C853; }
.cons .pros-cons-title { color: var(--red); }
.pros-cons-list { display: flex; flex-direction: column; gap: 8px; }
.pros-cons-list li {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pros-cons-list li::before { flex-shrink: 0; margin-top: 1px; }
.pros .pros-cons-list li::before { content: '✓'; color: #00C853; font-weight: 700; }
.cons .pros-cons-list li::before { content: '✗'; color: var(--red); font-weight: 700; }

/* Review Table */
.review-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.review-table th {
  background: var(--surface);
  padding: 12px 16px;
  text-align: left;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-sub);
  font-weight: 700;
}
.review-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
}
.review-table td strong { color: var(--text-white); }
.review-table tr:hover td { background: rgba(255,255,255,.03); }

/* Sticky CTA Sidebar */
.sticky-cta {
  position: sticky;
  top: 84px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sticky-cta-logo {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 0;
  margin: 0 auto 16px;
  display: block;
  object-fit: contain;
}
.sticky-cta-name {
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.sticky-cta-rating {
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}
.sticky-cta-bonus {
  background: rgba(245,180,0,.1);
  border: 1px solid rgba(245,180,0,.3);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}
.sticky-cta-bonus-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}
.sticky-cta-bonus-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.sticky-cta .btn { width: 100%; margin-bottom: 8px; }
.sticky-cta-disclaimer {
  font-size: .72rem;
  color: var(--text-sub);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

/* Section content styles */
.content-section { margin-bottom: 36px; }
.content-section h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.content-section h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: var(--text-muted);
}
.content-section p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Info box */
.info-box {
  background: rgba(0,170,255,.08);
  border: 1px solid rgba(0,170,255,.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .88rem;
  color: #80CFFF;
  margin: 20px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.info-box-icon { flex-shrink: 0; font-size: 1.1rem; margin-top: 1px; }

.warn-box {
  background: rgba(232,25,44,.08);
  border: 1px solid rgba(232,25,44,.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .88rem;
  color: #FF8090;
  margin: 20px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-muted);
  font-size: .95rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--red); }

/* ─── Responsive ─────────────────────── */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { order: -1; }
  .sticky-cta { position: relative; top: auto; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-outline { display: none; }
  .btn-nav { padding: 8px 14px; font-size: .78rem; }
  .nav-inner { padding: 0 16px; height: 56px; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 16px;
    gap: 24px;
  }
  .hero-visual { display: none; }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-bonus-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 16px;
  }
  .hero-bonus-box .bonus-divider { display: none; }
  .bonus-num { font-size: 1.7rem; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-subtitle { font-size: .95rem; }

  /* Trust bar */
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
  }
  .trust-item { font-size: .78rem; }

  /* Games */
  .games-section { padding: 32px 12px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .game-name { font-size: .72rem; }
  .game-provider { font-size: .62rem; }

  /* Bonus section */
  .bonus-section { padding: 36px 16px; }
  .bonus-inner { grid-template-columns: 1fr; gap: 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-footer { padding: 32px 16px 20px; }

  /* Review */
  .pros-cons { grid-template-columns: 1fr; }
  .score-box { grid-template-columns: 1fr 1fr; }
  .review-title-row { flex-direction: column; gap: 14px; }
  .review-hero { padding: 28px 16px; }
  .review-layout { padding: 24px 12px; }

  /* Tables */
  .review-table { font-size: .78rem; }
  .review-table th,
  .review-table td { padding: 9px 10px; }

  /* Sections */
  .usp-section { padding: 28px 12px 36px; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .usp-card { padding: 18px 14px; }
  .providers-section { padding: 28px 12px; }
  .seo-section { padding: 0 12px 36px; }
  .seo-block { padding: 20px 16px; }
  .diagnostic-section { padding: 32px 12px; }
  .diag-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Nav */
  .logo-svg { width: 110px; height: 27px; }
  .btn-nav { padding: 7px 11px; font-size: .74rem; }

  /* Hero */
  .hero-inner { padding: 24px 14px; }
  .hero-bonus-box { grid-template-columns: 1fr 1fr; padding: 12px 10px; gap: 8px; }
  .bonus-num { font-size: 1.45rem; }
  .bonus-label { font-size: .68rem; }

  /* Trust */
  .trust-bar { padding: 10px 14px; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: 8px; }

  /* Games */
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .game-filters { gap: 6px; }
  .filter-btn { padding: 6px 12px; font-size: .75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-payments { gap: 6px; }
  .payment-badge { font-size: .68rem; padding: 4px 8px; }

  /* Review */
  .score-box { grid-template-columns: 1fr 1fr; }
  .score-val { font-size: 1.6rem; }
  .review-table-wrap { margin: 12px -4px; }

  /* USP */
  .usp-grid { grid-template-columns: 1fr; }

  /* Sections */
  .seo-block { padding: 16px 12px; }
  .diag-card { padding: 16px 14px; }
  .bonus-section { padding: 28px 12px; }
  .providers-section { padding: 20px 12px; }
}
