/* ===========================================================
   TopCasinoReview – Header & Hero
   =========================================================== */

:root {
  /* ── PL light palette ── */
  --bg-base:    #F5F7FA;
  --bg-elev:    #FFFFFF;
  --surface-2:  #FFFFFF;
  --border:     #E2E8F0;
  --border-soft:   rgba(226, 232, 240, 0.95);
  --border-strong: #CBD5E1;

  --purple-900: #0F172A;
  --purple-700: #1E3A5F;
  --purple-500: #2563EB;

  --text-primary:   #0F172A;
  --text-secondary: #475569;
  --text-muted:     #94A3B8;

  --gold-400:  #D97706;
  --gold-hover:#F59E0B;
  --cyan-400:  #2563EB;
  --success:   #16A34A;
  --cta-green: #22C55E;
  --cta-red:   #DC2626;

  --pink-500: #D97706;
  --pink-400: #F59E0B;

  --gradient-brand: linear-gradient(135deg, #F59E0B 0%, #D97706 60%, #B45309 100%);
  --gradient-text:  linear-gradient(90deg, #D97706 0%, #F59E0B 50%, #2563EB 100%);

  --shadow-glow-pink:   0 4px 24px rgba(217, 119, 6, 0.15);
  --shadow-glow-purple: 0 4px 24px rgba(37, 99, 235, 0.12);
  --shadow-card: 0 2px 12px rgba(15, 23, 42, 0.06);

  --header-h: 76px;
  --container-w: 1240px;

  --hero-dark-bg: linear-gradient(160deg, #0F172A 0%, #1E3A5F 55%, #0F172A 100%);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Ambient background fx ---------- */

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-fx__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
}

.bg-fx__glow--1 {
  width: 620px;
  height: 620px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
}

.bg-fx__glow--2 {
  width: 560px;
  height: 560px;
  top: 120px;
  right: -200px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.05), transparent 70%);
}

.bg-fx__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 55%);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand / logo */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand__logo {
  width: 100%;
  height: 100%;
  display: block;
}

.brand__text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.025em;
  white-space: nowrap;
  line-height: 1;
}

.brand__wordmark {
  color: #F1F5F9;
}

.brand__accent {
  color: #C9956C;
  font-weight: 600;
}

.brand__geo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94A3B8;
  padding: 3px 7px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 4px;
  line-height: 1;
}

.brand__top {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand__rest { color: var(--text-primary); }

/* Main nav */

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
}

.nav-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #E8C9A0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.main-nav__list a:hover .nav-icon-wrap {
  color: #FFF4E8;
  transform: scale(1.06);
}

.main-nav__list a:has(.nav-icon-wrap)::after {
  display: none;
}

.main-nav__list a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav__list a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav__list a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ---------- Dropdown nav ── */

.has-dropdown {
  position: relative;
}

/* Invisible hover bridge – fills the gap between trigger and panel */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 14px;
}

@media (max-width: 860px) {
  .has-dropdown::after { display: none; }
}

.nav-parent-link {
  gap: 6px !important;
}

.nav-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
  color: var(--text-muted);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 226px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 8px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* small arrow pointing up */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: var(--bg-elev);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
}

.nav-dropdown li { list-style: none; }

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.nav-dropdown li a::after { display: none !important; }

.nav-dropdown li a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.065);
}

/* Nested sub-dropdown (e.g. Providers → top studios) */
.has-subdropdown {
  position: relative;
}

.nav-sub-parent {
  justify-content: space-between !important;
  width: 100%;
}

.nav-chevron--sub {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  color: var(--text-muted);
  transform: rotate(-90deg);
  transition: transform 0.22s ease;
}

.nav-subdropdown {
  position: absolute;
  top: -8px;
  left: calc(100% + 6px);
  min-width: 210px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 8px;
  z-index: 210;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  list-style: none;
}

.nav-subdropdown li a {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.nav-subdropdown li a::after { display: none !important; }

.nav-subdropdown li a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.065);
}

@media (min-width: 861px) {
  .has-subdropdown::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: 100%;
  }

  .has-subdropdown:hover .nav-chevron--sub,
  .has-subdropdown:focus-within .nav-chevron--sub {
    transform: rotate(0deg);
    color: var(--gold-400);
  }

  .has-subdropdown:hover .nav-subdropdown,
  .has-subdropdown:focus-within .nav-subdropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
}


@media (min-width: 861px) {
  .has-dropdown { position: relative; }

  /* Transparent bridge fills the 10px hover-gap between the nav item and the dropdown */
  .has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 12px;
  }

  .has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* Breadcrumbs */

.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(9, 11, 18, 0.6);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 0;
  list-style: none;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
}

.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px;
  border-right: 1.5px solid var(--text-muted);
  border-top: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  opacity: 0.55;
  flex-shrink: 0;
}

.breadcrumbs__item a {
  color: var(--text-secondary);
  transition: color 0.18s ease;
}

.breadcrumbs__item a:hover {
  color: var(--gold-400);
}

.breadcrumbs__item--current {
  color: var(--text-primary);
  font-weight: 500;
}

/* ===========================================================
   Shared icon system (matches homepage why-card / games-tile)
   =========================================================== */

.tcr-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tcr-icon-wrap--md {
  width: 56px;
  height: 56px;
}

.tcr-icon-wrap--sm {
  width: 50px;
  height: 50px;
  border-radius: 13px;
}

.tcr-icon-wrap--xs {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.tcr-icon {
  width: 34px;
  height: 34px;
  display: block;
  overflow: visible;
}

.tcr-icon-wrap--sm .tcr-icon {
  width: 30px;
  height: 30px;
}

.tcr-icon-wrap--xs .tcr-icon {
  width: 28px;
  height: 28px;
}

.tcr-icon-wrap svg,
.tcr-icon-inline svg,
.tcr-badge-icon,
.tcr-feature-icon {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.tcr-icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.tcr-icon-inline .tcr-icon {
  width: 28px;
  height: 28px;
}

.tcr-badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.tcr-feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  color: var(--success);
}

.tcr-icon-wrap--gold {
  color: var(--gold-400);
  background: rgba(245, 185, 66, 0.1);
  border-color: rgba(245, 185, 66, 0.22);
}

.tcr-icon-wrap--cyan {
  color: var(--cyan-400);
  background: rgba(77, 163, 255, 0.1);
  border-color: rgba(77, 163, 255, 0.22);
}

.tcr-icon-wrap--success {
  color: var(--success);
  background: rgba(46, 211, 163, 0.1);
  border-color: rgba(46, 211, 163, 0.22);
}

.tcr-icon-wrap--violet {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.18);
}

.tcr-icon-wrap--danger {
  color: #f07178;
  background: rgba(240, 113, 120, 0.1);
  border-color: rgba(240, 113, 120, 0.25);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  z-index: 1;
  padding: 76px 0 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 32px;
  padding-bottom: 64px;
}

.hero__content {
  max-width: 500px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.1);
  border: 1px solid rgba(77, 163, 255, 0.28);
  color: var(--cyan-400);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.hero__eyebrow-icon {
  width: 14px;
  height: 14px;
  fill: var(--gold-400);
}

.hero__title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero__title-highlight {
  display: block;
  padding-bottom: 0.08em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 30px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 185, 66, 0.28);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245, 185, 66, 0.4); }

.btn__icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.btn--primary:hover .btn__icon { transform: translateX(3px); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero media */

.hero__media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hero__media-glow {
  position: absolute;
  width: 105%;
  height: 105%;
  right: -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.25), rgba(245, 185, 66, 0.12) 45%, transparent 72%);
  filter: blur(60px);
  z-index: 0;
}

.hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 24px;
  box-shadow:
    0 40px 100px -24px rgba(0, 0, 0, 0.75),
    0 0 0 1px var(--border-soft),
    var(--shadow-glow-purple);
}

.hero__badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  background: rgba(17, 22, 37, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero__badge--top {
  top: 6%;
  right: -2%;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 20px;
}

.hero__badge-amount {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__badge-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero__badge--bottom {
  bottom: 6%;
  left: -6%;
  gap: 8px;
  padding: 11px 16px;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(46, 211, 163, 0.25);
  flex-shrink: 0;
}

/* Marquee strip */

.hero__marquee {
  width: 100%;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  padding: 16px 0;
}

.hero__marquee-inner {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: marquee-fallback 35s linear infinite;
}

@keyframes marquee-fallback {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.hero__marquee-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-right: 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__marquee-dot {
  color: var(--gold-400);
  font-size: 10px;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero__marquee-inner {
    animation: none !important;
    margin: 0 auto;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding-bottom: 48px;
  }

  .hero__content { max-width: none; }

  .hero__media {
    order: -1;
    margin-bottom: 12px;
    justify-content: center;
  }

  .hero__media-glow {
    right: auto;
    width: 92%;
    height: 92%;
  }

  .hero__image { max-width: 560px; margin: 0 auto; }
  .hero__subtitle { max-width: 100%; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(9, 11, 18, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open { max-height: 700px; }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 22px;
    gap: 2px;
  }

  .main-nav__list > li > a {
    padding: 13px 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .main-nav__list a::after { display: none; }

  .nav-toggle { display: flex; }

  /* Dropdown mobile */
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown::before { display: none; }

  .has-dropdown.is-open .nav-dropdown { max-height: 580px; }

  .has-dropdown.is-open .nav-chevron { transform: rotate(180deg); }

  .nav-dropdown li a {
    padding: 11px 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 13px;
  }

  .nav-subdropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-subdropdown.is-open .nav-subdropdown { max-height: 240px; }

  .has-subdropdown.is-open .nav-chevron--sub { transform: rotate(0deg); }

  .nav-subdropdown li a {
    padding: 10px 6px;
    font-size: 12.5px;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-parent-link {
    border-bottom: 1px solid var(--border-soft) !important;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }

  .hero { padding-top: 68px; }
  .hero__stats { gap: 22px; }
  .hero__badge--top { right: 0; }
  .hero__badge--bottom { left: 0; bottom: -4%; }
  .hero__title { font-size: clamp(28px, 8vw, 38px); }
}

@media (max-width: 640px) {
  .brand__text { font-size: 17px; }
}

@media (max-width: 420px) {
  .brand__text { font-size: 15px; }
  .hero__badge--bottom { display: none; }
}

/* ---------- Body sections ---------- */

.body-section {
  position: relative;
  z-index: 1;
  padding: 52px 0;
}

.body-section + .body-section {
  padding-top: 24px;
}

.trust-bar + .body-section {
  padding-top: 32px;
}

.body-section--alt {
  background: rgba(23, 29, 46, 0.6);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-head--center {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--left { max-width: 420px; }

.section-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.section-eyebrow--warn { color: #f87171; }

.section-title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Trust bar */

.trust-bar {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(17, 22, 37, 0.7);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.trust-bar__num {
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-bar__label {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-bar__divider {
  width: 1px;
  height: 36px;
  background: var(--border-soft);
}

/* Casino ranked list */

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.casino-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.casino-card--rank-1 {
  border-color: rgba(245, 185, 66, 0.35);
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.07) 0%, var(--surface-2) 50%);
}

.casino-card--rank-2 { border-color: rgba(77, 163, 255, 0.2); }
.casino-card--rank-3 { border-color: rgba(46, 211, 163, 0.2); }

.casino-card__rank {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  min-width: 28px;
}

.casino-card--rank-1 .casino-card__rank { color: var(--gold-400); }

.casino-card__logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 4px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.casino-card:hover .casino-card__logo {
  transform: translateY(-2px);
}

.casino-card__logo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.casino-card__logo--a {
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.7), rgba(232, 160, 32, 0.7));
}

.casino-card__logo--b {
  background: linear-gradient(135deg, rgba(27, 75, 140, 0.8), rgba(77, 163, 255, 0.7));
}

.casino-card__logo--c {
  background: linear-gradient(135deg, rgba(11, 100, 75, 0.8), rgba(46, 211, 163, 0.7));
}

.casino-card--rank-1:hover .casino-card__logo {
  box-shadow:
    0 12px 30px rgba(245, 185, 66, 0.2),
    0 0 0 1px rgba(245, 185, 66, 0.32);
}

.casino-card--rank-2:hover .casino-card__logo {
  box-shadow:
    0 12px 30px rgba(77, 163, 255, 0.16),
    0 0 0 1px rgba(77, 163, 255, 0.24);
}

.casino-card--rank-3:hover .casino-card__logo {
  box-shadow:
    0 12px 30px rgba(46, 211, 163, 0.16),
    0 0 0 1px rgba(46, 211, 163, 0.24);
}

.casino-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.casino-card__name {
  font-size: 18px;
  font-weight: 700;
}

.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.casino-card__score {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-400);
}

.casino-card__stars {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold-400);
}

.casino-card__bonus {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.casino-card__pros {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.casino-card__pros li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}

.casino-card__pros li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
}

.casino-card__cta {
  white-space: nowrap;
  padding: 12px 22px;
  font-size: 14px;
}

/* Bonuses */

.bonus-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.bonus-tabs__btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.bonus-tabs__btn:hover {
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.bonus-tabs__btn.is-active {
  background: #0F172A;
  border-color: #0F172A;
  color: #fff;
}

.bonus-card.is-hidden {
  display: none;
}

.bonus-empty {
  margin-bottom: 24px;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.14);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.bonus-empty.is-hidden {
  display: none;
}

.bonus-panel {
  display: none;
}

.bonus-panel.is-active {
  display: block;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 22px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.bonus-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border-strong);
  opacity: 0.45;
}

.bonus-card:hover {
  border-color: rgba(201, 149, 108, 0.35);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.bonus-card--featured {
  border-color: rgba(201, 149, 108, 0.32);
  background: linear-gradient(155deg, rgba(201, 149, 108, 0.1) 0%, #fff 48%);
  box-shadow:
    0 4px 22px rgba(201, 149, 108, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.04);
}

.bonus-card--featured::before {
  width: 4px;
  background: linear-gradient(180deg, #D4A574, #C9956C);
  opacity: 1;
}

.bonus-card--fresh::before {
  background: linear-gradient(180deg, #86EFAC, #22C55E);
  opacity: 0.7;
}

.bonus-card--duel::before {
  background: linear-gradient(180deg, #94A3B8, #475569);
  opacity: 0.75;
}

.bonus-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(201, 149, 108, 0.14);
  border: 1px solid rgba(201, 149, 108, 0.28);
  color: #8B5E3C;
}

.bonus-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-right: 72px;
}

.bonus-card:not(.bonus-card--featured) .bonus-card__header {
  padding-right: 0;
}

.bonus-card__logo {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 5px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
  transition: transform 0.22s;
}

.bonus-card:hover .bonus-card__logo {
  transform: translateY(-2px);
}

.bonus-card__logo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}

.bonus-card__logo--vavada {
  background: linear-gradient(145deg, #1E1B4B 0%, #312E81 100%);
}

.bonus-card__logo--fresh {
  background: linear-gradient(145deg, #8FD018 0%, #6CA30F 100%);
  padding: 0;
}

.bonus-card__logo--fresh img {
  border-radius: 15px;
  object-fit: cover;
}

.bonus-card__logo--duel {
  background: linear-gradient(145deg, #0F172A 0%, #334155 100%);
}

.bonus-card__intro {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.bonus-card__casino {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.bonus-card__label {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #64748B;
}

.bonus-card__label--spins {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.18);
  color: #15803D;
}

.bonus-card__label--rake {
  background: rgba(71, 85, 105, 0.08);
  border-color: rgba(71, 85, 105, 0.16);
  color: #334155;
}

.bonus-card__offer {
  padding: 16px 18px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 149, 108, 0.1) 0%, rgba(201, 149, 108, 0.03) 100%);
  border: 1px solid rgba(201, 149, 108, 0.18);
}

.bonus-card--fresh .bonus-card__offer {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
  border-color: rgba(34, 197, 94, 0.16);
}

.bonus-card--duel .bonus-card__offer,
.bonus-card__offer--rake {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.02) 100%);
  border-color: rgba(15, 23, 42, 0.1);
}

.bonus-card__amount {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.bonus-card__amount strong {
  color: #8B5E3C;
  font-weight: 800;
}

.bonus-card--fresh .bonus-card__amount strong {
  color: #15803D;
}

.bonus-card--duel .bonus-card__amount strong {
  color: #0F172A;
}

.bonus-card__spins {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.bonus-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.bonus-card__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 10px;
  background: #F8FAFC;
  border: 1px solid rgba(226, 232, 240, 0.95);
  text-align: center;
}

.bonus-card__stat--good {
  background: rgba(22, 163, 74, 0.07);
  border-color: rgba(22, 163, 74, 0.16);
}

.bonus-card__stat--good .bonus-card__stat-value {
  color: #166534;
}

.bonus-card__stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bonus-card__stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.bonus-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 13px 18px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.bonus-card__btn--primary {
  background: linear-gradient(135deg, #D4A574 0%, #C9956C 100%);
  color: #0F172A;
  box-shadow: 0 4px 16px rgba(201, 149, 108, 0.32);
}

.bonus-card__btn--primary:hover {
  background: linear-gradient(135deg, #E8C9A0 0%, #D4A574 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 149, 108, 0.38);
}

.bonus-card__btn--secondary {
  background: #0F172A;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
}

.bonus-card__btn--secondary:hover {
  background: #1E293B;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

/* Methodology */

.methodology__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.methodology__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.methodology__step {
  position: relative;
  padding: 0 0 32px 56px;
}

.methodology__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan-400), transparent);
}

.methodology__step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(77, 163, 255, 0.14);
  border: 1px solid rgba(77, 163, 255, 0.35);
  color: var(--cyan-400);
}

.methodology__step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.methodology__step-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Payment methods */

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #D8E0EA;
  box-shadow: none;
  transition: border-color 0.2s;
}

.pay-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: #CBD5E1;
  opacity: 0;
}

.pay-card:hover {
  border-color: #B8C4D4;
  box-shadow: none;
  transform: none;
}

.pay-card--featured {
  border-color: rgba(201, 149, 108, 0.55);
  background: #fff;
  box-shadow: none;
}

.pay-card--featured::before {
  opacity: 1;
  background: linear-gradient(180deg, #D4A574, #C9956C);
}

.pay-card--featured:hover {
  border-color: rgba(201, 149, 108, 0.7);
  box-shadow: none;
}

.pay-card__logo {
  width: 100%;
  height: 76px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: #F3F6FA;
  border: 1px solid #E2E8F0;
}

.pay-card__logo img {
  display: block;
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.pay-card--bitcoin .pay-card__logo img {
  max-height: 48px;
  max-width: 48px;
}

.pay-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  padding: 0;
}

.pay-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.pay-card__facts {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pay-card__facts li {
  font-size: 14px;
  line-height: 1.45;
  color: #0F172A;
}

.pay-card__facts li span {
  display: inline-block;
  min-width: 68px;
  font-weight: 600;
  color: #1E293B;
}

.pay-card__note {
  margin: auto 0 0;
  padding-top: 10px;
  border-top: 1px solid #E8EDF3;
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
}

/* Slots */

#slots .container,
.slots-section .container {
  max-width: none;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
}

.slots-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.slots-head__copy {
  max-width: 720px;
}

.slots-head__copy .section-title {
  margin-bottom: 0;
}

.slots-head__more {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan-400);
  transition: color 0.2s ease;
}

.slots-head__more:hover {
  color: var(--text-primary);
}

.slots-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  max-width: 1460px;
  margin-inline: auto;
}

.slot-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  max-width: 172px;
  margin-inline: auto;
  width: 100%;
  border-radius: 13px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

a.slot-poster {
  text-decoration: none;
  color: inherit;
}

.slot-poster:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 185, 66, 0.35);
  box-shadow: 0 16px 36px rgba(77, 163, 255, 0.14);
}

.slot-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.slot-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 10, 18, 0.88) 0%, rgba(8, 10, 18, 0.15) 42%, transparent 62%);
  pointer-events: none;
}

/* Instant / crash games — square tiles, no crop, lighter overlay */
.slots-section--instant .slot-poster {
  aspect-ratio: 1 / 1;
  max-width: 156px;
}

.slots-section--instant .slot-poster::before {
  display: none;
}

.slots-section--instant .slot-poster img {
  object-fit: cover;
  object-position: center;
}

.slots-section--instant .slot-poster--contain {
  background: linear-gradient(160deg, #3a1428 0%, #1a0a14 100%);
}

.slots-section--instant .slot-poster--contain img {
  object-fit: contain;
  padding: 8%;
}

.slot-poster__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 6px 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  background: linear-gradient(to top, rgba(8, 10, 18, 0.92) 0%, rgba(8, 10, 18, 0.45) 55%, transparent 100%);
  pointer-events: none;
}

.page-pl .slots-section--instant .slot-poster__label {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.35) 55%, transparent 100%);
}

/* Slot action buttons – Играть (affiliate) + Read more (review page) */
.slot-actions {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
}

.slot-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  line-height: 1.2;
}

.slot-play-btn--play {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: 0 3px 10px rgba(245, 185, 66, 0.32);
}

.slot-play-btn--play:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(245, 185, 66, 0.45);
}

.slot-play-btn--more {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.slot-play-btn--more:hover {
  color: #fff;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(245, 185, 66, 0.35);
}

.slot-poster .slot-actions {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: calc(100% - 10px);
  pointer-events: auto;
}

.slot-poster:hover .slot-actions,
.slot-poster:focus-within .slot-actions {
  transform: translateX(-50%) translateY(-2px);
}

.slot-thumb-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.slot-thumb-wrap--pick {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.slot-thumb-wrap--pick .pp-pick__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.nr-fresh__thumb.slot-thumb-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 10, 18, 0.88) 0%, transparent 55%);
  pointer-events: none;
}

.nr-fresh__thumb .slot-actions {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: calc(100% - 8px);
}

.nr-fresh__thumb .slot-play-btn {
  padding: 4px 8px;
  font-size: 8px;
}

.slot-actions--card {
  margin-top: 14px;
  width: 100%;
  gap: 8px;
}

.slot-actions--card .slot-play-btn {
  flex: 1;
  min-width: 0;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 11px;
}

.slot-actions--inline {
  margin-top: 8px;
  justify-content: flex-start;
  gap: 6px;
}

.slot-actions--inline .slot-play-btn {
  padding: 5px 12px;
  font-size: 10px;
}

.slot-actions--pick {
  margin-top: 6px;
  justify-content: flex-start;
  gap: 5px;
}

.slot-actions--pick .slot-play-btn {
  padding: 4px 10px;
  font-size: 10px;
}

/* Game categories */

.game-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.game-cat {
  position: relative;
  grid-column: span 1;
  display: block;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.game-cat--wide {
  grid-column: span 2;
  min-height: 280px;
}

.game-cat:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 149, 108, 0.55);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.game-cat__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.game-cat:hover .game-cat__img {
  transform: scale(1.05);
}

.game-cat__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.15) 38%, rgba(15, 23, 42, 0.82) 100%);
  pointer-events: none;
}

.game-cat__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 20px 18px 18px;
}

.game-cat--wide .game-cat__content {
  min-height: 280px;
  padding: 24px 22px 22px;
}

.game-cat__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.35);
}

.game-cat--wide .game-cat__title {
  font-size: 22px;
}

.game-cat__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
}

.game-cat__cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #E8C9A8;
}

/* Spotlight — Kasyno roku */

.spotlight__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.spotlight__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 24px;
  max-width: 54ch;
}

.spotlight__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.spotlight__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 118px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.spotlight__stat-val {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

.spotlight__stat-label {
  font-size: 12px;
  line-height: 1.35;
  color: var(--text-muted);
}

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

.spotlight__showcase {
  position: relative;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
  color: #fff;
}

.spotlight__showcase-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.spotlight__showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.22) 0%, rgba(15, 23, 42, 0.48) 42%, rgba(15, 23, 42, 0.94) 100%);
  pointer-events: none;
}

.spotlight__showcase-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 24px 22px 22px;
}

.spotlight__showcase-rank {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F8FAFC;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(212, 165, 116, 0.45);
  backdrop-filter: blur(8px);
}

.spotlight__showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.spotlight__showcase-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.spotlight__showcase-logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.28);
}

.spotlight__showcase-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.spotlight__showcase-name {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.35);
}

.spotlight__showcase-bonus {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  max-width: 24ch;
}

.spotlight__showcase-score {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.spotlight__showcase-score-num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #E8C9A8;
}

.spotlight__showcase-score-max {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.spotlight__showcase-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 16px;
}

.spotlight__showcase-fact {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spotlight__showcase-fact dt {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.spotlight__showcase-fact dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.spotlight__showcase-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  text-decoration: none;
  background: linear-gradient(135deg, #E8C9A8 0%, #C9956C 100%);
  box-shadow: 0 8px 24px rgba(201, 149, 108, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spotlight__showcase-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 149, 108, 0.45);
}

/* Avoid list */

.avoid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.avoid-card {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.avoid-card__logo {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 72px;
  padding: 8px 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.avoid-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.avoid-card__badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #ef4444;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.avoid-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.avoid-card__reason {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.avoid-card__score {
  font-size: 12.5px;
  font-weight: 600;
  color: #f87171;
}

/* Why us — premium pillars */

.why-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.why-pillar {
  position: relative;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 149, 108, 0.55);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.why-pillar__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.why-pillar:hover .why-pillar__img {
  transform: scale(1.05);
}

.why-pillar__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.22) 34%, rgba(15, 23, 42, 0.88) 100%);
  pointer-events: none;
}

.why-pillar__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 20px 18px 18px;
}

.why-pillar__num {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #E8C9A8;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(212, 165, 116, 0.35);
  backdrop-filter: blur(6px);
}

.why-pillar__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.35);
}

.why-pillar__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  max-width: 42ch;
}

/* Body responsive */

@media (max-width: 1024px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .avoid-list { grid-template-columns: repeat(2, 1fr); }
  .methodology__layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .body-section { padding: 44px 0; }
  .body-section + .body-section { padding-top: 20px; }

  .casino-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
  }

  .casino-card__body { flex: 1 1 calc(100% - 100px); min-width: 200px; }
  .casino-card__cta { flex: 1 1 100%; justify-content: center; }

  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .game-cats { grid-template-columns: repeat(2, 1fr); }
  .game-cat,
  .game-cat--wide { grid-column: span 1; min-height: 220px; }
  .game-cat__content,
  .game-cat--wide .game-cat__content { min-height: 220px; }
  .spotlight__layout { grid-template-columns: 1fr; gap: 32px; }
  .spotlight__showcase { order: -1; min-height: 360px; }
  .spotlight__showcase-body { min-height: 360px; }
  .avoid-list { grid-template-columns: 1fr; }
  .trust-bar__divider { display: none; }

  .slots-row {
    --slots-gap: 13px;
    display: flex;
    gap: var(--slots-gap);
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 8px;
  }

  .slots-row::-webkit-scrollbar { display: none; }

  .slot-poster {
    flex: 0 0 clamp(116px, calc((100% - var(--slots-gap)) / 2), 154px);
    max-width: none;
    margin-inline: 0;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .pay-grid { grid-template-columns: 1fr; }
  .game-cats { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .why-pillar,
  .why-pillar__body { min-height: 240px; }

  .spotlight__showcase { min-height: 340px; }
  .spotlight__showcase-body { min-height: 340px; padding: 20px 16px 16px; }
  .spotlight__showcase-head { flex-direction: column; align-items: flex-start; }
  .spotlight__showcase-score { align-self: flex-start; }
  .spotlight__showcase-facts { grid-template-columns: 1fr; }
  .spotlight__stat { min-width: calc(50% - 6px); flex: 1 1 calc(50% - 6px); }
}

/* FAQ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(77, 163, 255, 0.35);
  background: rgba(77, 163, 255, 0.05);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  transition: transform 0.25s ease, background-color 0.2s ease;
}

.faq-item[open] .faq-item__question::after {
  content: "−";
  background: rgba(77, 163, 255, 0.15);
  border-color: rgba(77, 163, 255, 0.38);
}

.faq-item__answer {
  padding: 0 22px 18px;
}

.faq-item__answer p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.faq-item__answer a {
  color: var(--cyan-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer a:hover { color: var(--text-primary); }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  z-index: 1;
  background: #0F172A;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #D97706, #F59E0B, #2563EB) 1;
  color: #E2E8F0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.footer__tagline {
  font-size: 14.5px;
  line-height: 1.65;
  color: #94A3B8;
}

.footer__age-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.footer__age-number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #F59E0B;
  font-weight: 800;
  font-size: 13px;
}

.footer__age-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: #CBD5E1;
}

.footer__col-title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #F59E0B;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: #CBD5E1;
  transition: color 0.2s ease;
}

.footer__links a:hover { color: #FFFFFF; }

.footer__help-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94A3B8;
  margin-bottom: 18px;
}

.footer__help-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__help-links a {
  font-size: 14px;
  color: #CBD5E1;
  transition: color 0.2s ease;
}

.footer__help-links a:hover { color: #FFFFFF; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0B1120;
}

.footer__copy {
  font-size: 13px;
  color: #64748B;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 13px;
  color: #64748B;
  transition: color 0.2s ease;
}

.footer__legal a:hover { color: #E2E8F0; }

.footer__disclaimer {
  padding: 18px 24px 28px;
  font-size: 11.5px;
  line-height: 1.6;
  color: #64748B;
  max-width: var(--container-w);
  background: #080D18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(245, 185, 66, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-3px); }

.back-to-top svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr;
    padding: 48px 24px 36px;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal { gap: 16px 18px; }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

/* ===========================================================
   PL Homepage – light theme fixes & new components
   =========================================================== */

/* Solid header & footer for PL */

.page-pl {
  --gold-400: #C9A227;
  --gold-hover: #B8922A;
  --gold-muted: #A68B4B;
  --cyan-400: #475569;
  --cta-green: #0F172A;
  --gradient-brand: #C9A227;
  --gradient-text: none;
}

.page-pl .site-header {
  background: linear-gradient(180deg, #0F172A 0%, #162032 100%);
  border-bottom: none;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.25);
}

.page-pl .site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #C9A227;
}

.page-pl .site-header__inner {
  position: relative;
}

.page-pl .brand__wordmark {
  color: #F1F5F9;
}

.page-pl .brand__accent {
  color: #C9956C;
}

.page-pl .brand__geo {
  color: #CBD5E1;
  border-color: rgba(203, 213, 225, 0.3);
}

.page-pl .main-nav__list a {
  color: #CBD5E1;
  font-weight: 600;
}

.page-pl .main-nav__list a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.page-pl .nav-icon-wrap {
  color: #E8C9A0;
}

.page-pl .main-nav__list a:hover .nav-icon-wrap {
  color: #FFF4E8;
}

.page-pl .nav-chevron {
  color: #64748B;
}

.page-pl .nav-toggle {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.page-pl .nav-toggle span {
  background: #F8FAFC;
}

.page-pl .nav-dropdown {
  background: #1E293B;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.page-pl .nav-dropdown::before {
  background: #1E293B;
  border-left-color: rgba(255, 255, 255, 0.12);
  border-right-color: rgba(255, 255, 255, 0.12);
}

.page-pl .nav-dropdown li a {
  color: #CBD5E1;
}

.page-pl .nav-dropdown li a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.page-pl .nav-subdropdown {
  background: #1E293B;
  border-color: rgba(255, 255, 255, 0.12);
}

.page-pl .nav-subdropdown li a {
  color: #CBD5E1;
}

.page-pl .site-footer .brand__wordmark {
  color: #F1F5F9;
}

.page-pl .site-footer .brand__accent {
  color: #C9956C;
}

.page-pl .site-footer .brand__geo {
  color: #CBD5E1;
  border-color: rgba(203, 213, 225, 0.25);
}

@media (max-width: 860px) {
  .page-pl .main-nav {
    background: #0F172A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  }

  .page-pl .main-nav__list > li > a {
    color: #E2E8F0;
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .page-pl .nav-dropdown {
    background: #1E293B;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .page-pl .nav-dropdown li a {
    color: #CBD5E1;
  }

  .page-pl .nav-dropdown li a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.06);
  }
}

.main-nav__list a:hover {
  background: rgba(15, 23, 42, 0.05);
}

.nav-dropdown {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04) inset;
}

.nav-dropdown li a:hover {
  background: rgba(15, 23, 42, 0.05);
}

.nav-subdropdown {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.nav-subdropdown li a:hover {
  background: rgba(15, 23, 42, 0.05);
}

.trust-bar {
  background: var(--bg-elev);
  box-shadow: none;
  border-bottom: 1px solid var(--border);
}

.page-pl .trust-bar__num {
  background: none;
  -webkit-text-fill-color: #0F172A;
  color: #0F172A;
}

/* Alternate sections — soft contrast, not flat white or dark gray */

.page-pl .body-section {
  background: var(--bg-base);
}

.page-pl .body-section--alt {
  background: linear-gradient(180deg, #E2E9F2 0%, #DAE3EE 100%);
  border-top: 1px solid #CFD8E3;
  border-bottom: 1px solid #CFD8E3;
}

.page-pl .bonus-card,
.page-pl .pay-card,
.page-pl .ranking-item:not(.ranking-item--rank-1) {
  background: #FFFFFF;
}

.page-pl .bonus-card:hover,
.page-pl .avoid-card:hover,
.page-pl .ranking-item:not(.ranking-item--rank-1):hover {
  background: #FFFFFF;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.09);
  border-color: rgba(201, 149, 108, 0.35);
}

.page-pl .why-pillar:hover {
  border-color: rgba(201, 149, 108, 0.55);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.page-pl .game-cat:hover {
  border-color: rgba(201, 149, 108, 0.55);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.page-pl .pay-card:hover {
  background: #FFFFFF;
  border-color: #B8C4D4;
  box-shadow: none;
}

.page-pl .ranking-item--rank-1:hover {
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(201, 149, 108, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, #0F172A 0%, #162032 45%, #0F172A 100%);
}

.page-pl .bonus-card--featured {
  border-color: rgba(201, 149, 108, 0.32);
  background: linear-gradient(155deg, rgba(201, 149, 108, 0.1) 0%, #fff 48%);
}

.page-pl .bonus-card__tag {
  background: rgba(201, 149, 108, 0.14);
  border-color: rgba(201, 149, 108, 0.28);
  color: #8B5E3C;
}

.page-pl .spotlight__stat {
  border-color: var(--border);
}

.page-pl .spotlight__showcase {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.page-pl .slot-poster {
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.page-pl .slot-poster:hover {
  border-color: rgba(201, 149, 108, 0.45);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.page-pl .slot-play-btn--play {
  background: #0F172A;
  box-shadow: none;
}

.page-pl .slot-play-btn--play:hover {
  background: #1E293B;
  box-shadow: none;
}

.page-pl .slot-play-btn--more {
  color: #0F172A;
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
}

.page-pl .slot-play-btn--more:hover {
  color: #0F172A;
  background: #F8FAFC;
  border-color: rgba(201, 149, 108, 0.45);
}

.page-pl .site-footer {
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  border-image: none;
}

.page-pl .footer__col-title {
  color: #E2E8F0;
}

.page-pl .footer__age-badge {
  border-color: rgba(255, 255, 255, 0.1);
}

.page-pl .footer__age-number {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #94A3B8;
}

.page-pl .affiliate-note {
  background: rgba(15, 23, 42, 0.03);
  border-color: var(--border);
}

.page-pl .cookie-banner__accept {
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.5);
  color: #C9A227;
}

.page-pl .cookie-banner__accept:hover {
  background: rgba(201, 162, 39, 0.1);
}

.casino-card,
.bonus-card,
.pay-card,
.avoid-card,
.faq-item,
.spotlight__showcase,
.why-pillar {
  box-shadow: var(--shadow-card);
}

.bonus-tabs__btn {
  background: var(--bg-elev);
}

.bonus-tabs__btn.is-active {
  background: #0F172A;
  border-color: #0F172A;
  color: #fff;
}

/* Hero PL – dark card on light page */

.hero--pl {
  padding: 32px 0 0;
}

.hero--pl .hero__content {
  max-width: none;
}

.hero--pl .hero__subtitle {
  max-width: 720px;
}

.hero--pl .hero__card {
  background: var(--hero-dark-bg);
  border-radius: 20px;
  padding: 40px 44px;
  color: #F8FAFC;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hero--pl .hero__card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  gap: 40px;
  align-items: center;
}

.hero--pl .hero__media {
  position: relative;
  justify-content: center;
  align-self: stretch;
}

.hero--pl .hero__media-glow {
  right: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(
    circle,
    rgba(201, 149, 108, 0.28) 0%,
    rgba(77, 163, 255, 0.14) 42%,
    transparent 72%
  );
}

.hero--pl .hero__image {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
  object-position: center center;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 48px rgba(201, 149, 108, 0.12);
}

.hero--pl .hero__badge {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero--pl .hero__badge--top {
  top: 8%;
  right: -4%;
}

.hero--pl .hero__badge--bottom {
  bottom: 8%;
  left: -6%;
  color: #CBD5E1;
}

.hero--pl .hero__badge-amount {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #D4A574;
  -webkit-text-fill-color: #D4A574;
  font-size: 20px;
}

.hero--pl .hero__badge-label {
  color: #94A3B8;
}

.hero--pl .hero__eyebrow {
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}

.hero--pl .hero__title {
  color: #F8FAFC;
}

.hero--pl .hero__subtitle {
  color: #CBD5E1;
}

.hero--pl .hero__stat-num {
  color: #D4A574;
  background: none;
  -webkit-text-fill-color: #D4A574;
}

.hero--pl .hero__stat-label {
  color: #94A3B8;
}

.hero__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.hero__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #94A3B8;
  flex-shrink: 0;
}

.hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__author-name {
  font-size: 14px;
  font-weight: 600;
  color: #F8FAFC;
}

.hero__author-role {
  font-size: 12.5px;
  color: #94A3B8;
}

.hero--pl .hero__marquee {
  margin-top: 24px;
  background: #0F172A;
  border-top: 1px solid rgba(201, 149, 108, 0.35);
  border-bottom: 1px solid rgba(201, 149, 108, 0.35);
  padding: 14px 0;
}

.hero--pl .hero__marquee-group {
  color: #F8FAFC;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero--pl .hero__marquee-dot {
  color: #D4A574;
  font-size: 11px;
  opacity: 1;
}

/* Hub page hero — compact, same scale as homepage */

.hero--hub {
  padding: 32px 0 0;
}

.hero--hub .hero__card {
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, rgba(201, 149, 108, 0.14) 0%, transparent 55%),
    var(--hero-dark-bg);
}

.hero--hub .hero__card-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 32px;
}

.hero--hub .hero__title {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 16px;
}

.hero--hub .hero__subtitle {
  margin-bottom: 24px;
}

.hero--hub .hero__stats {
  margin-bottom: 0;
}

.hero__media--showcase {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.hero-ranking-showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(201, 149, 108, 0.16) 0%, transparent 70%),
    linear-gradient(165deg, #1a2438 0%, #0f172a 48%, #0b1220 100%);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 48px rgba(201, 149, 108, 0.1);
}

.hero-ranking-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  pointer-events: none;
}

.hero-ranking-showcase__label,
.hero-ranking-showcase__note {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
}

.hero-ranking-showcase__podium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 10px;
  flex: 1;
  padding: 8px 0 4px;
}

.hero-ranking-showcase__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-ranking-showcase__card--1 {
  padding-top: 22px;
  padding-bottom: 16px;
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(201, 149, 108, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(201, 149, 108, 0.42);
  box-shadow: 0 12px 32px rgba(201, 149, 108, 0.18);
}

.hero-ranking-showcase__pick {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #0F172A;
  background: linear-gradient(135deg, #F0D4B0 0%, #C9956C 100%);
}

.hero-ranking-showcase__rank {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #64748B;
}

.hero-ranking-showcase__card--1 .hero-ranking-showcase__rank {
  color: #E8C9A0;
}

.hero-ranking-showcase__logo {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
}

.hero-ranking-showcase__card--1 .hero-ranking-showcase__logo {
  width: 64px !important;
  height: 64px !important;
}

.hero-ranking-showcase__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-ranking-showcase__name {
  margin: 0;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.25;
  color: #F1F5F9;
}

.hero-ranking-showcase__score {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: #D4A574;
}

.hero-ranking-showcase__card--1 .hero-ranking-showcase__score {
  font-size: 24px;
  color: #F0D4B0;
}

.hero-ranking-showcase__meta {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  color: #94A3B8;
}

@media (max-width: 560px) {
  .hero-ranking-showcase {
    padding: 16px 12px 14px;
  }

  .hero-ranking-showcase__name {
    font-size: 10px;
  }

  .hero-ranking-showcase__logo {
    width: 48px !important;
    height: 48px !important;
  }

  .hero-ranking-showcase__card--1 .hero-ranking-showcase__logo {
    width: 54px !important;
    height: 54px !important;
  }
}

.hero__title-accent {
  background: linear-gradient(135deg, #F0D4B0 0%, #C9956C 55%, #D4A574 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.page-pl .breadcrumbs--compact {
  padding: 8px 0;
}

/* Ranking cards */

.ranking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.ranking-tabs__btn {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.ranking-tabs__btn:hover {
  color: var(--text-primary);
  border-color: rgba(201, 149, 108, 0.35);
}

.ranking-tabs__btn.is-active {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-color: #0F172A;
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ranking-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-item.is-hidden {
  display: none;
}

.ranking-item__layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
}

/* —— #1 featured (dark) —— */

.ranking-item--rank-1 {
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(201, 149, 108, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #0F172A 0%, #162032 45%, #0F172A 100%);
  border: 1px solid rgba(201, 149, 108, 0.32);
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ranking-item--rank-1:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 72px rgba(15, 23, 42, 0.32),
    0 0 0 1px rgba(201, 149, 108, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ranking-item--rank-1 .ranking-item__name {
  color: #F8FAFC;
}

.ranking-item--rank-1 .ranking-item__bonus-line {
  color: #E8C9A0;
}

.ranking-item--rank-1 .ranking-item__meta li {
  color: #64748B;
}

.ranking-item--rank-1 .ranking-item__meta strong {
  color: #E2E8F0;
}

.ranking-item--rank-1 .ranking-item__score-num {
  background: linear-gradient(135deg, #F0D4B0 0%, #C9956C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ranking-item--rank-1 .ranking-item__score-max {
  color: #64748B;
}

.ranking-item--rank-1 .ranking-item__badge--top {
  background: rgba(201, 149, 108, 0.2);
  border-color: rgba(201, 149, 108, 0.35);
  color: #E8C9A0;
}

.ranking-item--rank-1 .ranking-item__badge--blik {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
}

.ranking-item--rank-1 .btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #CBD5E1;
}

.ranking-item--rank-1 .btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 149, 108, 0.45);
  color: #F8FAFC;
}

/* —— #2 & #3 (light) —— */

.ranking-item--rank-2,
.ranking-item--rank-3 {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.ranking-item--rank-2:hover,
.ranking-item--rank-3:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 149, 108, 0.3);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.ranking-item--rank-2 {
  border-left: 4px solid #94A3B8;
}

.ranking-item--rank-3 {
  border-left: 4px solid #D97706;
}

/* —— Layout blocks —— */

.ranking-item__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ranking-item__rank {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.ranking-item--rank-1 .ranking-item__rank {
  background: linear-gradient(145deg, #E8C9A0, #C9956C);
  color: #0F172A;
  box-shadow: 0 4px 12px rgba(201, 149, 108, 0.4);
}

.ranking-item--rank-2 .ranking-item__rank {
  background: #F1F5F9;
  color: #475569;
}

.ranking-item--rank-3 .ranking-item__rank {
  background: linear-gradient(145deg, #FEF3C7, #F59E0B);
  color: #78350F;
}

.ranking-item__logo {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ranking-item--rank-1 .ranking-item__logo {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(201, 149, 108, 0.25);
}

.ranking-item__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.ranking-item__logo--vavada {
  background: linear-gradient(145deg, #1E1B4B, #312E81);
}

.ranking-item__logo--fresh {
  background: linear-gradient(145deg, #8FD018, #6CA30F);
  padding: 0;
}

.ranking-item__logo--fresh img {
  border-radius: 18px;
  object-fit: cover;
}

.ranking-item__logo--duel {
  background: linear-gradient(145deg, #0F172A, #334155);
}

.ranking-item__main {
  min-width: 0;
}

.ranking-item__pick {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #E8C9A0, #C9956C);
  color: #0F172A;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ranking-item__name {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ranking-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.ranking-item__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
}

.ranking-item__badge--top {
  background: rgba(201, 149, 108, 0.12);
  border-color: rgba(201, 149, 108, 0.25);
  color: #8B5E3C;
}

.ranking-item__badge--blik {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.1);
  color: #0F172A;
}

.ranking-item__badge--new {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.16);
  color: #1D4ED8;
}

.ranking-item__badge--spins {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.18);
  color: #15803D;
}

.ranking-item__badge--fast {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.22);
  color: #166534;
}

.ranking-item__bonus-line {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  line-height: 1.4;
  color: #0F172A;
  margin-bottom: 14px;
}

.ranking-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ranking-item__meta li {
  font-size: 13px;
  color: var(--text-muted);
}

.ranking-item__meta li span {
  margin-right: 4px;
}

.ranking-item__meta strong {
  font-weight: 700;
  color: var(--text-primary);
}

.ranking-item__meta-accent {
  color: #16A34A !important;
}

.ranking-item__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 168px;
  padding-left: 28px;
  border-left: 1px solid rgba(148, 163, 184, 0.2);
}

.ranking-item--rank-1 .ranking-item__side {
  border-left-color: rgba(255, 255, 255, 0.1);
}

.ranking-item__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.ranking-item__score-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
}

.ranking-item__score-max {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.ranking-item__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.ranking-item .btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: #0F172A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
}

.ranking-item .btn--cta:hover {
  background: #1E293B;
  transform: translateY(-1px);
}

.ranking-item--rank-1 .btn--cta {
  background: linear-gradient(135deg, #E8C9A0 0%, #C9956C 100%);
  color: #0F172A;
  box-shadow: 0 6px 20px rgba(201, 149, 108, 0.4);
}

.ranking-item--rank-1 .btn--cta:hover {
  background: linear-gradient(135deg, #F0D4B0 0%, #D4A574 100%);
}

.ranking-item .btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 20px;
  border-radius: 12px;
  background: #fff;
  color: #64748B;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #CBD5E1;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ranking-item .btn--outline:hover {
  background: #F8FAFC;
  border-color: rgba(201, 149, 108, 0.4);
  color: #0F172A;
}

/* Legal block */

.legal-block {
  padding: 36px 0;
}

.legal-block__inner {
  padding: 28px 32px;
  border-radius: 16px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 4px solid var(--gold-400);
}

.legal-block__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-block__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-block__text a {
  color: var(--cyan-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-block__text + .legal-block__text {
  margin-top: 10px;
}

/* Contextual prose blocks inside sections */

.section-prose {
  margin-top: 28px;
  max-width: 1080px;
}

.section-head .section-desc + .section-desc {
  margin-top: 10px;
}

.section-desc--slots {
  margin-top: 10px;
  max-width: 56ch;
}

/* SEO guide / prose cards — text wraps images */

.seo-guide {
  padding: 0;
}

.body-section.seo-guide {
  padding: 48px 0 52px;
}

.seo-guide__articles {
  display: grid;
  gap: 28px;
  max-width: 1080px;
}

.seo-guide__article {
  padding: 36px 40px;
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  max-width: 1080px;
}

.seo-guide__article--clear::after {
  content: "";
  display: table;
  clear: both;
}

.seo-guide__figure {
  margin: 4px 0 18px;
  max-width: 400px;
  width: 42%;
}

.seo-guide__figure--left {
  float: left;
  margin-right: 32px;
  margin-bottom: 12px;
}

.seo-guide__figure--right {
  float: right;
  margin-left: 32px;
  margin-bottom: 12px;
}

.seo-guide__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 16px 48px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.seo-guide__figure figcaption {
  margin-top: 10px;
  padding: 0 4px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: left;
}

@media (max-width: 820px) {
  .seo-guide__figure,
  .seo-guide__figure--left,
  .seo-guide__figure--right {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0 0 18px;
  }
}

.seo-guide__article h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  line-height: 1.3;
}

.seo-guide__article p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

.seo-guide__article p:last-of-type {
  margin-bottom: 0;
}

.seo-guide__article ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.seo-guide__article li + li {
  margin-top: 8px;
}

.seo-guide__article a {
  color: var(--cyan-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-guide__article strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 20px;
  background: #0F172A;
  color: #E2E8F0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 13.5px;
  line-height: 1.55;
  flex: 1;
  min-width: 240px;
}

.cookie-banner__text a {
  color: var(--gold-hover);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__accept {
  padding: 10px 22px;
  border-radius: 8px;
  background: var(--gold-400);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-banner__accept:hover {
  background: var(--gold-hover);
}

.affiliate-note {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 960px) {
  .ranking-item__layout {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 22px 20px;
  }

  .ranking-item__side {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
  }

  .ranking-item--rank-1 .ranking-item__side {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .ranking-item__score {
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
  }

  .ranking-item__score-num {
    font-size: 36px;
  }

  .ranking-item__actions {
    flex-direction: row;
    width: auto;
    min-width: 240px;
  }
}

@media (max-width: 560px) {
  .ranking-item__layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px;
  }

  .ranking-item__aside {
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
  }

  .ranking-item__logo,
  .ranking-item--rank-1 .ranking-item__logo {
    width: 72px;
    height: 72px;
  }

  .ranking-item__side {
    flex-direction: column;
    align-items: stretch;
  }

  .ranking-item__score {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 4px;
  }

  .ranking-item__actions {
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .hero--pl .hero__card-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero--pl .hero__media {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero--pl .hero__badge--top {
    right: 2%;
  }

  .hero--pl .hero__badge--bottom {
    left: 2%;
  }
}

@media (max-width: 860px) {
  .hero--pl .hero__card { padding: 28px 24px; }
  .hero__author { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__accept { width: 100%; }
  body.cookie-visible .back-to-top { bottom: 88px; }
}

/* Legal pages (Regulamin, Polityka prywatności) */

.page-pl .breadcrumbs {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.page-pl .breadcrumbs__item a:hover {
  color: #C9956C;
}

.legal-page-hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.legal-page-hero .section-head {
  max-width: 720px;
  margin-bottom: 0;
  text-align: left;
}

.legal-page-hero .section-eyebrow {
  color: #C9956C;
}

.legal-page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 48px 0 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .legal-page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-page-toc { display: none; }
}

.legal-page-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.legal-page-toc__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.legal-page-toc__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-page-toc__list a {
  display: block;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-secondary);
  padding: 7px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.legal-page-toc__list a:hover {
  color: #0F172A;
  background: rgba(201, 149, 108, 0.1);
  border-left-color: #C9956C;
}

.legal-page-article {
  min-width: 0;
}

.legal-page-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.legal-page-updated__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.legal-page-section {
  margin-bottom: 48px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.legal-page-section__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9956C;
  margin-bottom: 8px;
}

.legal-page-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-page-section p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

.legal-page-section p:last-child {
  margin-bottom: 0;
}

.legal-page-section ul {
  margin: 14px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-page-section ul li {
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-left: 18px;
}

.legal-page-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9956C;
  opacity: 0.85;
}

.legal-page-section a {
  color: #0F172A;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.legal-page-section a:hover {
  color: #C9956C;
}

.legal-page-highlight {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 3px solid #C9956C;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
}

.legal-page-highlight p {
  font-size: 14.5px;
  margin: 0;
}

.legal-page-highlight strong {
  color: var(--text-primary);
}

.legal-page-figure {
  margin: 32px 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.legal-page-figure img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.legal-page-figure figcaption {
  padding: 12px 18px;
  background: #FFFFFF;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.legal-page-info {
  background: #F8FAFC;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 3px solid #0F172A;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
}

.legal-page-info p {
  font-size: 14.5px;
  margin: 0;
}

.legal-page-warning {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-left: 3px solid #ef4444;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
}

.legal-page-warning p {
  font-size: 14.5px;
  margin: 0;
}

.legal-page-warning strong {
  color: #b91c1c;
}

.legal-page-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-page-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-page-table th {
  background: #F8FAFC;
  color: var(--text-primary);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  white-space: nowrap;
}

.legal-page-table td {
  padding: 11px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  vertical-align: top;
  line-height: 1.6;
}

.legal-page-table tr:last-child td {
  border-bottom: none;
}

.legal-page-table tr:hover td {
  background: rgba(201, 149, 108, 0.04);
}

/* Responsible gambling page */

.rg-orgs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.rg-org-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.rg-org-card:hover {
  border-color: rgba(201, 149, 108, 0.5);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.rg-org-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.rg-org-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.rg-org-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0F172A;
  text-decoration: none;
}

.rg-org-card__link:hover {
  color: #C9956C;
}

.rg-quiz {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 28px;
  margin: 24px 0;
}

.rg-quiz__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.rg-quiz__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.rg-quiz__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rg-quiz__list li {
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 28px;
  line-height: 1.65;
}

.rg-quiz__list li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201, 149, 108, 0.15);
  border: 1px solid rgba(201, 149, 108, 0.35);
  color: #C9956C;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rg-quiz__note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PL hub pages — tables, mini reviews, methodology */

/* Compare table — TOP 3 bonusy i wypłaty */

.compare-table {
  overflow-x: auto;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.compare-table__grid {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table__grid th,
.compare-table__grid td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.compare-table__grid thead th {
  background: linear-gradient(180deg, #0F172A 0%, #162032 100%);
  color: #CBD5E1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(201, 149, 108, 0.45);
}

.compare-table__grid thead th:first-child {
  border-radius: 18px 0 0 0;
}

.compare-table__grid thead th:last-child {
  border-radius: 0 18px 0 0;
}

.compare-table__row:last-child td {
  border-bottom: none;
}

.compare-table__row--1 {
  background: linear-gradient(90deg, rgba(201, 149, 108, 0.1) 0%, rgba(255, 255, 255, 0) 55%);
}

.compare-table__row--1 td:first-child {
  box-shadow: inset 3px 0 0 #C9956C;
}

.compare-table__row:hover td {
  background: rgba(201, 149, 108, 0.05);
}

.compare-table__row--1:hover td {
  background: linear-gradient(90deg, rgba(201, 149, 108, 0.14) 0%, rgba(255, 255, 255, 0) 55%);
}

.compare-table__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #E2E8F0;
  color: #475569;
  font-weight: 800;
  font-size: 14px;
}

.compare-table__rank--1 {
  background: linear-gradient(135deg, #F0D4B0 0%, #C9956C 100%);
  color: #0F172A;
  box-shadow: 0 4px 12px rgba(201, 149, 108, 0.35);
}

.compare-table__casino {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.compare-table__logo.ranking-item__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.compare-table__logo.ranking-item__logo--fresh {
  padding: 0;
}

.compare-table__logo.ranking-item__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-table__casino-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.compare-table__name {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
}

.compare-table__tag {
  display: inline-block;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0F172A;
  background: linear-gradient(135deg, #F0D4B0 0%, #C9956C 100%);
}

.compare-table__tag--muted {
  color: #64748B;
  background: #F1F5F9;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.compare-table__bonus {
  font-weight: 600;
  color: #0F172A;
  line-height: 1.45;
  max-width: 220px;
}

.compare-table__note {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
}

.compare-table__payout {
  font-weight: 600;
  color: #334155;
}

.compare-table__payout--fast {
  color: #9A6B45;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 149, 108, 0.14);
  border: 1px solid rgba(201, 149, 108, 0.28);
  white-space: nowrap;
}

.compare-table__score {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-width: 52px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #C9956C;
  background: rgba(201, 149, 108, 0.1);
  border: 1px solid rgba(201, 149, 108, 0.22);
}

.compare-table__row--1 .compare-table__score {
  color: #0F172A;
  background: linear-gradient(135deg, #F0D4B0 0%, #C9956C 100%);
  border-color: rgba(201, 149, 108, 0.4);
  box-shadow: 0 4px 14px rgba(201, 149, 108, 0.25);
}

.methodology {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.methodology__chart {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.methodology__bar {
  display: flex;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: #E2E8F0;
}

.methodology__segment {
  height: 100%;
  flex-shrink: 0;
}

.methodology__segment--25 { width: 25%; background: linear-gradient(90deg, #C9956C, #9A6B45); }
.methodology__segment--20 { width: 20%; background: linear-gradient(90deg, #D4A574, #C9956C); }
.methodology__segment--15 { width: 15%; background: linear-gradient(90deg, #E8C9A0, #D4A574); }
.methodology__segment--10 { width: 10%; background: linear-gradient(90deg, #CBD5E1, #94A3B8); }

.methodology__chart-caption {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #64748B;
  text-align: center;
}

.methodology__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.methodology-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 22px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.methodology-item:hover {
  border-color: rgba(201, 149, 108, 0.38);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.methodology-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9A6B45;
  background: linear-gradient(145deg, rgba(201, 149, 108, 0.18) 0%, rgba(201, 149, 108, 0.06) 100%);
  border: 1px solid rgba(201, 149, 108, 0.22);
}

.methodology-item__icon svg {
  width: 22px;
  height: 22px;
}

.methodology-item__body {
  flex: 1;
  min-width: 0;
}

.methodology-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.methodology-item__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #0F172A;
}

.methodology-item__pct {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #8B5E3C;
  background: rgba(201, 149, 108, 0.14);
  border: 1px solid rgba(201, 149, 108, 0.28);
}

.methodology-item__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: #64748B;
}

.methodology-item__track {
  height: 5px;
  border-radius: 999px;
  background: #E2E8F0;
  overflow: hidden;
}

.methodology-item__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #C9956C 0%, #D4A574 100%);
}

.casino-mini-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 960px) {
  .casino-mini-reviews {
    grid-template-columns: 1fr;
  }
}

.casino-mini-review {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.casino-mini-review--featured {
  border-color: rgba(201, 149, 108, 0.45);
  box-shadow: 0 8px 32px rgba(201, 149, 108, 0.12);
}

.casino-mini-review__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.casino-mini-review__logo.ranking-item__logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.casino-mini-review--featured .casino-mini-review__logo.ranking-item__logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 0 2px rgba(201, 149, 108, 0.22);
}

.casino-mini-review__logo.ranking-item__logo--fresh {
  padding: 0;
}

.casino-mini-review__logo.ranking-item__logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.casino-mini-review__rank {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9956C;
}

.casino-mini-review__name {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

.casino-mini-review__score {
  margin-left: auto;
  font-size: 22px;
  font-weight: 800;
  color: #C9956C;
  line-height: 1;
}

.casino-mini-review__score span {
  font-size: 13px;
  font-weight: 500;
  color: #94A3B8;
}

.casino-mini-review__pros {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casino-mini-review__pros li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
}

.casino-mini-review__pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C9956C;
  font-weight: 700;
}

.casino-mini-review__note {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
  background: rgba(15, 23, 42, 0.035);
  border-left: 3px solid rgba(15, 23, 42, 0.14);
}

.casino-mini-review__note--con {
  background: rgba(201, 149, 108, 0.08);
  border-left-color: #C9956C;
}

.casino-mini-review__note strong {
  color: #0F172A;
  font-weight: 600;
}

.casino-mini-review__note + .casino-mini-review__note {
  margin-top: 8px;
}

.casino-mini-review__note:last-of-type {
  margin-bottom: 18px;
}

.casino-mini-review__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.casino-mini-review__cta .btn--outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: var(--surface-1);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.casino-mini-review__cta .btn--outline:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.casino-mini-review__cta .btn--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.casino-mini-review__cta .btn--cta:hover {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  transform: translateY(-1px);
}

.casino-mini-review--featured .casino-mini-review__cta .btn--cta {
  background: linear-gradient(135deg, #C9956C 0%, #9A6B45 100%);
  color: #0F172A;
  border-color: rgba(201, 149, 108, 0.4);
}

.casino-mini-review--featured .casino-mini-review__cta .btn--cta:hover {
  background: linear-gradient(135deg, #D4A574 0%, #C9956C 100%);
}

.page-pl .nav-dropdown li a[aria-current="page"] {
  color: #E8C9A0;
  background: rgba(201, 149, 108, 0.14);
}

.page-pl .has-dropdown .nav-parent-link .nav-icon-wrap {
  margin-right: 2px;
}

/* Bonus powitalne hub — hero & compact inline illustrations */
.page-bonusy .hero--hub .hero__image {
  border-radius: 18px;
  aspect-ratio: 4 / 3;
}

.page-bonusy .seo-guide__figure {
  max-width: 340px;
  width: 38%;
}

.page-bonusy .seo-guide__figure img {
  max-height: 240px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 820px) {
  .page-bonusy .seo-guide__figure img {
    max-height: 200px;
  }
}

/* BLIK hub page */
.page-blik .hero--hub .hero__media--showcase {
  min-height: 340px;
}

.blik-showcase {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(220, 38, 38, 0.12) 0%, rgba(15, 23, 42, 0.55) 38%, rgba(15, 23, 42, 0.82) 100%);
  border: 1px solid rgba(248, 113, 113, 0.28);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

.blik-showcase__label {
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FCA5A5;
}

.blik-showcase__card {
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blik-showcase__card--featured {
  background: linear-gradient(180deg, rgba(248, 113, 113, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(248, 113, 113, 0.35);
}

.blik-showcase__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.blik-showcase__logo img {
  height: 36px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.blik-showcase__title {
  margin: 0 0 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #F8FAFC;
}

.blik-showcase__steps {
  margin: 0 0 10px;
  padding-left: 1.15rem;
  font-size: 11.5px;
  line-height: 1.55;
  color: #CBD5E1;
}

.blik-showcase__steps li + li {
  margin-top: 4px;
}

.blik-showcase__time {
  margin: 0;
  text-align: center;
  font-size: 11px;
  color: #94A3B8;
}

.blik-showcase__time strong {
  color: #FCA5A5;
}

.blik-showcase__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.blik-showcase__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.blik-showcase__stat-val {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  color: #F0D4B0;
}

.blik-showcase__stat-lbl {
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.25;
  color: #94A3B8;
}

.blik-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.blik-steps__item {
  position: relative;
  padding: 18px 18px 16px 52px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.blik-steps__item--highlight {
  border-color: rgba(220, 38, 38, 0.28);
  background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 55%);
}

.blik-steps__num {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #DC2626;
}

.blik-steps__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
}

.blik-steps__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
}

.ranking-item__logo--total {
  background: linear-gradient(145deg, #991B1B, #DC2626);
  padding: 0;
  overflow: hidden;
}

.ranking-item__logo--total img {
  border-radius: 18px;
  object-fit: cover;
}

.page-blik #jak-wplacic .seo-guide__figure--left {
  max-width: 360px;
  width: 38%;
}

.page-blik #jak-wplacic .seo-guide__figure img {
  max-height: none;
  object-fit: contain;
  object-position: center top;
}

@media (max-width: 720px) {
  .blik-steps {
    grid-template-columns: 1fr;
  }

  .blik-showcase__stats {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   Slot review pages (sr-*)
   =========================================================== */

.sr-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
}

.sr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.32;
  filter: saturate(1.1);
}

.sr-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.82) 45%, rgba(15, 23, 42, 0.72) 100%);
}

.sr-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: end;
}

.sr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8C9A0;
  border: 1px solid rgba(201, 149, 108, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.sr-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F8FAFC;
  margin-bottom: 12px;
}

.sr-hero__title span {
  color: #C9956C;
}

.sr-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.sr-hero__tag {
  font-size: 11.5px;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 6px 12px;
}

.sr-hero__sub {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 22px;
}

.sr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sr-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 100px;
  background: #C9A227;
  color: #0F172A;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.28);
  transition: transform 0.2s, opacity 0.2s;
}

.sr-hero__cta:hover {
  color: #0F172A;
  transform: translateY(-1px);
  opacity: 0.92;
}

.sr-hero__cta--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #F8FAFC;
  box-shadow: none;
}

.sr-hero__cta--ghost:hover {
  border-color: rgba(201, 149, 108, 0.5);
  color: #E8C9A0;
  opacity: 1;
}

.sr-panel {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
}

.sr-panel__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.sr-panel__thumb {
  width: 72px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.sr-panel__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sr-panel__score {
  font-size: 2.35rem;
  font-weight: 800;
  color: #B8922A;
  line-height: 1;
}

.sr-panel__of {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.sr-panel__note {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.sr-panel__bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sr-panel__bar-row {
  display: grid;
  grid-template-columns: 88px 1fr 30px;
  gap: 8px;
  align-items: center;
}

.sr-panel__bar-name {
  font-size: 10.5px;
  color: var(--text-muted);
}

.sr-panel__bar-track {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.sr-panel__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C9A227, #E8C9A0);
  border-radius: 3px;
}

.sr-panel__bar-num {
  font-size: 11px;
  font-weight: 700;
  color: #B8922A;
  text-align: right;
}

.sr-strip {
  padding: 0 0 40px;
  margin-top: -8px;
}

.sr-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.sr-strip__item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.sr-strip__val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #B8922A;
  margin-bottom: 3px;
}

.sr-strip__lbl {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
}

.sr-section {
  padding: 56px 0;
}

.sr-section--alt {
  background: #EEF2F7;
}

.sr-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8922A;
  margin-bottom: 8px;
}

.sr-section__eyebrow--spaced {
  margin-top: 48px;
}

.sr-section__title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.sr-section__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 660px;
  margin-bottom: 28px;
}

.sr-prose {
  max-width: 740px;
}

.sr-prose p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.sr-prose p:last-child {
  margin-bottom: 0;
}

.sr-prose--wide,
.sr-prose--wrap {
  max-width: none;
}

.sr-prose--wrap {
  overflow: hidden;
}

.sr-prose--mb {
  margin-bottom: 28px;
}

.sr-prose--mb-md {
  margin-bottom: 24px;
}

.sr-prose--mt {
  margin-top: 32px;
}

.sr-prose--mt-md {
  margin-top: 24px;
}

.sr-figure {
  float: right;
  width: min(42%, 380px);
  margin: 4px 0 24px 32px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.sr-figure--left {
  float: left;
  margin: 4px 32px 24px 0;
}

.sr-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.sr-figure__caption {
  padding: 12px 16px;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

.sr-checklist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.sr-checklist__item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.sr-checklist__num {
  font-size: 22px;
  font-weight: 800;
  color: #B8922A;
  line-height: 1;
  margin-bottom: 10px;
}

.sr-checklist__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.sr-checklist__text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

.sr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.sr-tape {
  background: #0F172A;
  border: 1px solid #1E293B;
  border-radius: 16px;
  overflow: hidden;
}

.sr-tape__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1E293B;
  border-bottom: 1px solid #334155;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
}

.sr-tape__meta {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #CBD5E1;
}

.sr-tape__body {
  padding: 4px 0;
  max-height: 340px;
  overflow-y: auto;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
}

.sr-tape__line {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 8px 16px;
  color: #64748B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sr-tape__spin {
  color: #E8C9A0;
}

.sr-tape__line--win {
  color: #CBD5E1;
}

.sr-tape__line--bonus {
  background: rgba(201, 162, 39, 0.1);
  color: #F1F5F9;
}

.sr-tape__line--peak {
  background: rgba(201, 162, 39, 0.16);
  color: #fff;
  font-weight: 600;
}

.sr-dial {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.sr-dial__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sr-dial__num {
  font-size: 2.75rem;
  font-weight: 800;
  color: #B8922A;
  line-height: 1;
  margin-bottom: 6px;
}

.sr-dial__sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.sr-dial__bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.sr-dial__row {
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

.sr-dial__track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.sr-dial__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #C9A227, #E8C9A0);
}

.sr-dial__fill--muted {
  background: #CBD5E1;
}

.sr-dial__val {
  font-weight: 700;
  color: #B8922A;
  text-align: right;
}

.sr-dial__note {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: left;
}

.sr-ladder {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sr-ladder__row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.sr-ladder__rank {
  font-weight: 800;
  color: #B8922A;
  text-align: center;
}

.sr-ladder__sym {
  font-weight: 600;
  color: var(--text-primary);
}

.sr-ladder__detail {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.sr-ladder__hit {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}

.sr-ledger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sr-ledger__card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-card);
}

.sr-ledger__card--hot {
  border-color: rgba(201, 162, 39, 0.32);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.06) 0%, var(--bg-elev) 100%);
}

.sr-ledger__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sr-ledger__range {
  font-size: 1.05rem;
  font-weight: 800;
  color: #B8922A;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.sr-ledger__pct {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  background: #F1F5F9;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
}

.sr-ledger__card--hot .sr-ledger__pct {
  color: #B8922A;
  border-color: rgba(201, 162, 39, 0.25);
  background: rgba(201, 162, 39, 0.08);
}

.sr-ledger__track {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.sr-ledger__fill {
  height: 100%;
  min-width: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #C9A227, #E8C9A0);
}

.sr-ledger__note {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.sr-ledger__foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.sr-lab {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: var(--shadow-card);
}

.sr-lab--scroll {
  overflow-x: auto;
}

.sr-lab__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.sr-lab__table th,
.sr-lab__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  vertical-align: top;
}

.sr-lab__table th {
  background: #F8FAFC;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sr-lab__table tr:last-child td {
  border-bottom: none;
}

.sr-lab__mode {
  font-weight: 700;
  color: var(--text-primary);
}

.sr-lab__pick {
  color: #B8922A;
  font-weight: 700;
  font-size: 11px;
  display: block;
  margin-top: 4px;
}

.sr-rtp {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.sr-rtp__body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.sr-rtp__tip {
  background: rgba(201, 162, 39, 0.08);
  border-left: 3px solid #C9A227;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.sr-rtp__tip strong {
  color: #B8922A;
  font-weight: 600;
}

.sr-rtp__tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sr-rtp__tier {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.sr-rtp__tier--best {
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.06);
}

.sr-rtp__tier-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: #B8922A;
  min-width: 62px;
}

.sr-rtp__tier-info strong {
  display: block;
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.sr-rtp__tier-info span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.sr-family {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-elev);
  box-shadow: var(--shadow-card);
}

.sr-family__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.sr-family__table th,
.sr-family__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.sr-family__table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: #F8FAFC;
}

.sr-family__table td {
  color: var(--text-secondary);
}

.sr-family__table tr:last-child td {
  border-bottom: none;
}

.sr-family__table tr.is-current td {
  color: var(--text-primary);
  background: rgba(201, 162, 39, 0.06);
}

.sr-family__name {
  font-weight: 700;
  color: var(--text-primary);
}

.sr-family__pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #B8922A;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 100px;
  padding: 3px 8px;
  margin-left: 6px;
}

.sr-echo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sr-echo__card {
  padding: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.sr-echo__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.sr-echo__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.sr-echo__text {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.sr-echo--mt {
  margin-top: 28px;
}

.sr-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sr-fit__col {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.sr-fit__col--yes {
  border-color: rgba(22, 163, 74, 0.25);
}

.sr-fit__col--no {
  border-color: rgba(220, 38, 38, 0.22);
}

.sr-fit__head {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.sr-fit__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sr-fit__list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}

.sr-fit__col--yes .sr-fit__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16A34A;
  font-weight: 700;
}

.sr-fit__col--no .sr-fit__list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
}

.sr-verdict {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.08) 0%, var(--bg-elev) 55%);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.sr-verdict--mt {
  margin-top: 32px;
}

.sr-verdict__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.sr-verdict__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

.sr-verdict__score {
  text-align: center;
}

.sr-verdict__num {
  font-size: 3.5rem;
  font-weight: 800;
  color: #B8922A;
  line-height: 1;
}

.sr-verdict__lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.sr-casinos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sr-casino {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s;
}

.sr-casino:hover {
  border-color: rgba(201, 162, 39, 0.35);
}

.sr-casino__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sr-casino__logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 4px;
  flex-shrink: 0;
  overflow: hidden;
}

.sr-casino__logo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.sr-casino__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.sr-casino__note {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.sr-casino__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #B8922A;
}

.sr-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sr-related__card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, transform 0.2s;
}

.sr-related__card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-2px);
}

.sr-related__thumb {
  width: 52px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.sr-related__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.sr-related__meta {
  font-size: 11px;
  color: var(--text-muted);
}

.sr-demo-box {
  background: var(--bg-elev);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.sr-demo-box__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.sr-demo-box p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.sr-demo-box p:last-child {
  margin-bottom: 0;
}

.sr-disclaimer {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 36px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

.sr-lab--mt {
  margin-top: 28px;
}

.sr-panel__thumb-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.sr-panel__thumb--logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.sr-related__thumb--wide {
  object-fit: cover;
  border-radius: 8px;
}

.page-casino-review .compare-table {
  margin-top: 0;
}

.page-casino-review .cr-figure--wide {
  float: none;
  width: 100%;
  max-width: 100%;
  margin: 20px 0 24px;
}

.page-casino-review .cr-figure--wide img {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 14px;
}

.page-casino-review .cr-shot {
  max-width: 420px;
  width: 44%;
}

.page-casino-review .cr-shot img {
  background: #0f172a;
  border-color: rgba(15, 23, 42, 0.18);
}

.page-casino-review .cr-shot--sm {
  max-width: 304px;
  width: 34%;
}

.page-casino-review .cr-shot--sm img {
  background: transparent;
}

.page-casino-review #games .seo-guide__figure--right {
  max-width: 320px;
}

.page-casino-review #games .cr-shot.seo-guide__figure--right {
  max-width: 420px;
}

.page-casino-review .seo-guide__article h3 {
  clear: both;
  margin-top: 26px;
}

.page-casino-review .seo-guide__article h3:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .page-casino-review #games .seo-guide__figure--right {
    float: none;
    max-width: 100%;
    margin: 0 auto 20px;
  }
}

@media (max-width: 820px) {
  .page-casino-review .cr-shot,
  .page-casino-review .cr-shot--sm,
  .page-casino-review #games .cr-shot.seo-guide__figure--right {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0 0 18px;
  }
}

/* Payments — compact 4-in-a-row on casino review */
.page-casino-review #payments .pay-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.page-casino-review #payments .pay-card {
  padding: 12px 10px 10px;
}

.page-casino-review #payments .pay-card__logo {
  height: 52px;
  margin-bottom: 8px;
  padding: 6px 8px;
}

.page-casino-review #payments .pay-card__logo img {
  max-height: 32px;
}

.page-casino-review #payments .pay-card__name {
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.25;
}

.page-casino-review #payments .pay-card__facts {
  gap: 3px;
  margin-bottom: 8px;
}

.page-casino-review #payments .pay-card__facts li {
  font-size: 12px;
  line-height: 1.35;
}

.page-casino-review #payments .pay-card__facts li span {
  min-width: 52px;
  font-size: 11px;
}

.page-casino-review #payments .pay-card__note {
  padding-top: 6px;
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .page-casino-review #payments .pay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .page-casino-review #payments .pay-grid {
    grid-template-columns: 1fr;
  }
}

/* Casino review page — hub layout + cr-* components */
.page-casino-review .hero--hub .hero__media--showcase {
  min-height: 340px;
}

.page-casino-review .hero__actions .btn--outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  color: var(--text-primary);
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-casino-review .hero__actions .btn--outline:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 149, 108, 0.55);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.cr-showcase {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(201, 149, 108, 0.16) 0%, rgba(15, 23, 42, 0.55) 38%, rgba(15, 23, 42, 0.82) 100%);
  border: 1px solid rgba(201, 149, 108, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

.cr-showcase__label {
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8C9A0;
}

.cr-showcase__card {
  position: relative;
  padding: 16px 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.cr-showcase__rank {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9956C 100%);
}

.cr-showcase__logo {
  margin: 0 auto 10px;
  width: 80px;
  height: 80px;
}

.cr-showcase__score {
  margin: 0 0 4px;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: #F8FAFC;
}

.cr-showcase__score span {
  font-size: 1rem;
  font-weight: 600;
  color: #94A3B8;
}

.cr-showcase__bonus {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: #CBD5E1;
}

.cr-showcase__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.cr-showcase__bar-row {
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #94A3B8;
}

.cr-showcase__bar-row strong {
  text-align: right;
  color: #E8C9A0;
  font-size: 12px;
}

.cr-showcase__bar-track {
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.cr-showcase__bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #C9956C 0%, #E8C9A0 100%);
}

.cr-showcase__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.cr-showcase__facts div {
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.cr-showcase__facts strong {
  display: block;
  font-size: 14px;
  color: #F8FAFC;
}

.cr-showcase__facts span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.35;
  color: #94A3B8;
}

.ranking-item--solo {
  margin-bottom: 28px;
}

.compare-table--specs {
  margin-top: 24px;
}

.compare-table--specs .compare-table__grid {
  max-width: 720px;
}

/* Casino specs card — cr-specs */
.cr-specs {
  margin-top: 28px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 149, 108, 0.14) 0%, transparent 60%),
    linear-gradient(165deg, #1a2438 0%, #0f172a 55%, #0b1220 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.cr-specs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
}

.cr-specs__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cr-specs__logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cr-specs__eyebrow {
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
}

.cr-specs__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}

.cr-specs__score {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(145deg, rgba(201, 149, 108, 0.22) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(201, 149, 108, 0.38);
  box-shadow: 0 0 24px rgba(201, 149, 108, 0.15);
}

.cr-specs__score-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  color: #E8C9A0;
}

.cr-specs__score-max {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
}

.cr-specs__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-specs__highlight {
  padding: 18px 16px 16px;
  background: rgba(15, 23, 42, 0.55);
  text-align: center;
}

.cr-specs__highlight-label {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748B;
}

.cr-specs__highlight-val {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}

.cr-specs__highlight-meta {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.4;
  color: #94A3B8;
}

.cr-specs__highlight--bonus {
  background: linear-gradient(180deg, rgba(201, 149, 108, 0.14) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.cr-specs__highlight--bonus .cr-specs__highlight-val {
  color: #E8C9A0;
}

.cr-specs__highlight--payout {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.12) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.cr-specs__highlight--payout .cr-specs__highlight-val {
  color: #86EFAC;
}

.cr-specs__highlight--blik {
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.12) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.cr-specs__highlight--blik .cr-specs__highlight-val {
  color: #FCA5A5;
}

.cr-specs__list {
  margin: 0;
  padding: 6px 0 4px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.cr-specs__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 12px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cr-specs__row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.cr-specs__row:nth-child(even) {
  background: rgba(0, 0, 0, 0.08);
}

.cr-specs__row:last-child,
.cr-specs__row:nth-last-child(2) {
  border-bottom: none;
}

.cr-specs__row--warn dd {
  color: #FCD34D;
}

.cr-specs__row dt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94A3B8;
}

.cr-specs__row dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #E2E8F0;
  text-align: right;
}

.cr-specs__accent {
  color: #E8C9A0;
  font-weight: 700;
}

.cr-specs__tag {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FCD34D;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.28);
  vertical-align: middle;
}

.cr-specs__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}

.cr-specs__icon::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.cr-specs__icon--operator::after { content: "◎"; color: #94A3B8; font-size: 11px; }
.cr-specs__icon--year::after { content: "17"; color: #CBD5E1; font-size: 9px; letter-spacing: -0.04em; }
.cr-specs__icon--license::after { content: "!"; color: #FCD34D; }
.cr-specs__icon--wager::after { content: "×"; color: #E8C9A0; font-size: 14px; }
.cr-specs__icon--deposit::after { content: "↓"; color: #93C5FD; }
.cr-specs__icon--currency::after { content: "zł"; color: #86EFAC; font-size: 9px; letter-spacing: -0.02em; }

.cr-specs__icon--license {
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.1);
}

.cr-specs__icon--wager {
  border-color: rgba(201, 149, 108, 0.35);
  background: rgba(201, 149, 108, 0.1);
}

.cr-specs__icon--deposit {
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(37, 99, 235, 0.12);
}

.cr-specs__icon--currency {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.1);
}

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

  .cr-specs__list {
    grid-template-columns: 1fr;
  }

  .cr-specs__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 18px;
  }

  .cr-specs__row dd {
    text-align: left;
    padding-left: 38px;
  }

  .cr-specs__row:last-child {
    border-bottom: none;
  }

  .cr-specs__row:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cr-specs__head {
    padding: 18px 18px 16px;
  }
}

@media (max-width: 480px) {
  .cr-specs__score {
    padding: 8px 12px;
  }

  .cr-specs__score-num {
    font-size: 1.4rem;
  }
}

.cr-payout-tests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
  align-items: stretch;
}

.cr-payout-test {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(201, 149, 108, 0.22) 0%, transparent 62%),
    linear-gradient(165deg, #1a2438 0%, #0f172a 52%, #0b1220 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cr-payout-test::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
  pointer-events: none;
}

.cr-payout-test__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 140%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(201, 149, 108, 0.18) 0%, transparent 68%);
  pointer-events: none;
  opacity: 0.85;
}

.cr-payout-test:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 149, 108, 0.38);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.38),
    0 0 40px rgba(201, 149, 108, 0.12);
}

.cr-payout-test--fast {
  border-color: rgba(201, 149, 108, 0.45);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.32),
    0 0 48px rgba(201, 149, 108, 0.16);
  transform: translateY(-4px);
}

.cr-payout-test--fast:hover {
  transform: translateY(-8px);
  box-shadow:
    0 32px 68px rgba(15, 23, 42, 0.4),
    0 0 56px rgba(201, 149, 108, 0.22);
}

.cr-payout-test__ribbon {
  position: absolute;
  top: 14px;
  right: -28px;
  z-index: 2;
  padding: 5px 36px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F172A;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9956C 100%);
  transform: rotate(32deg);
  box-shadow: 0 4px 14px rgba(201, 149, 108, 0.45);
}

.cr-payout-test__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 18px 0;
}

.cr-payout-test__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94A3B8;
}

.cr-payout-test__method {
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-payout-test__method--blik {
  color: #FCA5A5;
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.cr-payout-test__method--card {
  color: #93C5FD;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.cr-payout-test__hero {
  position: relative;
  z-index: 1;
  padding: 16px 18px 14px;
  text-align: center;
}

.cr-payout-test__amount {
  display: block;
  font-size: clamp(1.75rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #F8FAFC;
  text-shadow: 0 0 28px rgba(232, 201, 160, 0.35);
}

.cr-payout-test--fast .cr-payout-test__amount {
  color: #E8C9A0;
}

.cr-payout-test__time {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: #86EFAC;
  font-variant-numeric: tabular-nums;
}

.cr-payout-test__time-label {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748B;
}

.cr-payout-test__speed {
  position: relative;
  z-index: 1;
  height: 4px;
  margin: 0 18px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.cr-payout-test__speed-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22C55E 0%, #86EFAC 100%);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.55);
}

.cr-payout-test__speed-fill--max {
  background: linear-gradient(90deg, #C9956C 0%, #E8C9A0 100%);
  box-shadow: 0 0 14px rgba(201, 149, 108, 0.6);
}

.cr-payout-test__timeline {
  position: relative;
  z-index: 1;
  margin: 0 18px;
  padding: 0 0 4px;
  list-style: none;
  flex: 1;
}

.cr-payout-test__timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.5) 0%, rgba(201, 149, 108, 0.45) 55%, rgba(34, 197, 94, 0.65) 100%);
  border-radius: 2px;
}

.cr-payout-test__step {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.cr-payout-test__step + .cr-payout-test__step {
  margin-top: 14px;
}

.cr-payout-test__step-icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.55);
}

.cr-payout-test__step--deposit .cr-payout-test__step-icon {
  border-color: rgba(96, 165, 250, 0.55);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.35) 0%, rgba(15, 23, 42, 0.9) 100%);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.25);
}

.cr-payout-test__step--play .cr-payout-test__step-icon {
  border-color: rgba(201, 149, 108, 0.55);
  background: linear-gradient(145deg, rgba(201, 149, 108, 0.3) 0%, rgba(15, 23, 42, 0.9) 100%);
  box-shadow: 0 0 16px rgba(201, 149, 108, 0.2);
}

.cr-payout-test__step--payout .cr-payout-test__step-icon {
  border-color: rgba(34, 197, 94, 0.55);
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.28) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.cr-payout-test__step--done .cr-payout-test__step-icon {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.45);
}

.cr-payout-test__step--deposit .cr-payout-test__step-icon::after {
  content: "↓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 800;
  color: #93C5FD;
}

.cr-payout-test__step--play .cr-payout-test__step-icon::after {
  content: "▶";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  font-weight: 800;
  color: #E8C9A0;
  padding-left: 2px;
}

.cr-payout-test__step--payout .cr-payout-test__step-icon::after {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 800;
  color: #86EFAC;
}

.cr-payout-test__step-body time {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 3px;
}

.cr-payout-test__step--done .cr-payout-test__step-body time {
  color: #86EFAC;
}

.cr-payout-test__step-body p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #CBD5E1;
}

.cr-payout-test__step--done .cr-payout-test__step-body p {
  color: #F1F5F9;
  font-weight: 500;
}

.cr-payout-test__foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.12) 100%);
}

.cr-payout-test__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cr-payout-test__badge--ok {
  color: #86EFAC;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.15);
}

.cr-payout-test__badge--ok::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

.cr-payout-test__note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #94A3B8;
}

.cr-bonus-calc {
  position: relative;
  max-width: 760px;
  margin: 0 auto 32px;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 55% at 50% -15%, rgba(201, 149, 108, 0.2) 0%, transparent 62%),
    linear-gradient(165deg, #1a2438 0%, #0f172a 52%, #0b1220 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.22),
    0 0 48px rgba(201, 149, 108, 0.08);
}

.cr-bonus-calc__glow {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 120%;
  height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(201, 149, 108, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.cr-bonus-calc__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-bonus-calc__eyebrow {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
}

.cr-bonus-calc__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}

.cr-bonus-calc__package {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(145deg, rgba(201, 149, 108, 0.22) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(201, 149, 108, 0.38);
  box-shadow: 0 0 24px rgba(201, 149, 108, 0.12);
}

.cr-bonus-calc__package-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
}

.cr-bonus-calc__package-val {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 800;
  color: #E8C9A0;
}

.cr-bonus-calc__flow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 20px 16px;
}

.cr-bonus-calc__chip {
  min-width: 108px;
  padding: 14px 12px 12px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cr-bonus-calc__chip--bonus {
  background: linear-gradient(180deg, rgba(201, 149, 108, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(201, 149, 108, 0.38);
  box-shadow: 0 0 20px rgba(201, 149, 108, 0.12);
}

.cr-bonus-calc__chip-label {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
}

.cr-bonus-calc__chip-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}

.cr-bonus-calc__chip--bonus .cr-bonus-calc__chip-val {
  color: #E8C9A0;
}

.cr-bonus-calc__op {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-bonus-calc__op--wager {
  width: auto;
  min-width: 44px;
  padding: 0 10px;
  border-radius: 100px;
  font-size: 13px;
  color: #E8C9A0;
  background: rgba(201, 149, 108, 0.16);
  border-color: rgba(201, 149, 108, 0.38);
  box-shadow: 0 0 16px rgba(201, 149, 108, 0.2);
}

.cr-bonus-calc__result {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 20px 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(201, 149, 108, 0.14) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1px solid rgba(201, 149, 108, 0.35);
  box-shadow:
    0 0 32px rgba(201, 149, 108, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cr-bonus-calc__result-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
}

.cr-bonus-calc__result-val {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  color: #E8C9A0;
  letter-spacing: -0.03em;
  text-shadow: 0 0 28px rgba(232, 201, 160, 0.35);
}

.cr-bonus-calc__result-formula {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #64748B;
  font-variant-numeric: tabular-nums;
}

.cr-bonus-calc__wager-badge {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0F172A;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9956C 100%);
  box-shadow: 0 4px 16px rgba(201, 149, 108, 0.4);
}

.cr-bonus-calc__meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-bonus-calc__meta-item {
  padding: 14px 12px;
  text-align: center;
  background: rgba(15, 23, 42, 0.55);
}

.cr-bonus-calc__meta-item--warn {
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.cr-bonus-calc__meta-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748B;
}

.cr-bonus-calc__meta-val {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 800;
  color: #F1F5F9;
}

.cr-bonus-calc__meta-item--warn .cr-bonus-calc__meta-val {
  color: #FCD34D;
}

.cr-bonus-calc__note {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 14px 24px 20px;
  font-size: 12px;
  line-height: 1.55;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 720px) {
  .cr-bonus-calc__head {
    flex-direction: column;
    padding: 18px 18px 14px;
  }

  .cr-bonus-calc__flow {
    padding: 16px 14px 12px;
    gap: 6px;
  }

  .cr-bonus-calc__chip {
    min-width: calc(50% - 24px);
    flex: 1 1 calc(50% - 24px);
  }

  .cr-bonus-calc__op--wager {
    width: 100%;
    margin-top: 4px;
  }

  .cr-bonus-calc__result {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 14px 14px;
    padding: 16px;
  }

  .cr-bonus-calc__meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .cr-bonus-calc__note {
    padding: 14px 18px 18px;
  }
}

.blik-steps--bonus {
  margin-top: 0;
}

/* Promo code block — casino review */
.cr-code {
  position: relative;
  max-width: 820px;
  margin: 0 auto 32px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 55% at 50% -15%, rgba(201, 149, 108, 0.2) 0%, transparent 62%),
    linear-gradient(165deg, #1a2438 0%, #0f172a 52%, #0b1220 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.22),
    0 0 48px rgba(201, 149, 108, 0.08);
}

.cr-code__glow {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 120%;
  height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(201, 149, 108, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.cr-code__answer {
  position: relative;
  z-index: 1;
  padding: 24px 26px 18px;
}

.cr-code__answer-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
}

.cr-code__answer-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #E2E8F0;
}

.cr-code__answer-text strong {
  color: #E8C9A0;
}

.cr-code__field {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 26px 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(201, 149, 108, 0.42);
}

.cr-code__field-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748B;
}

.cr-code__field-input {
  flex: 1;
  font-family: "Poppins", monospace;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #475569;
}

.cr-code__field-badge {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #E8C9A0;
  background: rgba(201, 149, 108, 0.16);
  border: 1px solid rgba(201, 149, 108, 0.38);
}

.cr-code__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-code__item {
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(11, 18, 32, 0.9) 100%);
}

.cr-code__item--warn {
  background: linear-gradient(180deg, rgba(120, 53, 15, 0.28) 0%, rgba(11, 18, 32, 0.9) 100%);
}

.cr-code__item-label {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
}

.cr-code__item--warn .cr-code__item-label {
  color: #FCA5A5;
}

.cr-code__item-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #CBD5E1;
}

@media (max-width: 860px) {
  .cr-code__list {
    grid-template-columns: 1fr;
  }

  .cr-code__answer {
    padding: 20px 18px 14px;
  }

  .cr-code__field {
    flex-wrap: wrap;
    margin: 0 18px 16px;
  }

  .cr-code__field-input {
    flex-basis: 100%;
    letter-spacing: 0.2em;
  }
}

.cr-license-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 28px;
  align-items: stretch;
}

.cr-license-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(255, 255, 255, 0.06) 0%, transparent 62%),
    linear-gradient(165deg, #1a2438 0%, #0f172a 52%, #0b1220 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cr-license-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  pointer-events: none;
}

.cr-license-card__glow {
  position: absolute;
  top: -35%;
  left: 50%;
  width: 130%;
  height: 75%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cr-license-card--legal .cr-license-card__glow {
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.2) 0%, transparent 68%);
}

.cr-license-card--offshore .cr-license-card__glow {
  background: radial-gradient(ellipse at center, rgba(201, 149, 108, 0.2) 0%, transparent 68%);
}

.cr-license-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.32);
}

.cr-license-card--legal {
  border-color: rgba(96, 165, 250, 0.28);
}

.cr-license-card--legal:hover {
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.32), 0 0 40px rgba(37, 99, 235, 0.12);
}

.cr-license-card--offshore {
  border-color: rgba(201, 149, 108, 0.32);
}

.cr-license-card--featured {
  transform: translateY(-3px);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.28),
    0 0 48px rgba(201, 149, 108, 0.1);
}

.cr-license-card--featured:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 149, 108, 0.48);
  box-shadow:
    0 32px 68px rgba(15, 23, 42, 0.36),
    0 0 56px rgba(201, 149, 108, 0.18);
}

.cr-license-card__ribbon {
  position: absolute;
  top: 14px;
  right: -30px;
  z-index: 2;
  padding: 5px 38px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F172A;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9956C 100%);
  transform: rotate(32deg);
  box-shadow: 0 4px 14px rgba(201, 149, 108, 0.4);
}

.cr-license-card__head {
  position: relative;
  z-index: 1;
  padding: 24px 22px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-license-card--legal .cr-license-card__head {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.12) 0%, transparent 100%);
}

.cr-license-card--offshore .cr-license-card__head {
  background: linear-gradient(180deg, rgba(201, 149, 108, 0.12) 0%, transparent 100%);
}

.cr-license-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-license-card__badge--legal {
  color: #93C5FD;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.cr-license-card__badge--offshore {
  color: #E8C9A0;
  background: rgba(201, 149, 108, 0.16);
  border: 1px solid rgba(201, 149, 108, 0.38);
}

.cr-license-card__title {
  margin: 0 0 6px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}

.cr-license-card__status {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cr-license-card__status--legal {
  color: #86EFAC;
}

.cr-license-card__status--warn {
  color: #FCD34D;
}

.cr-license-card__features {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px 22px 8px;
  list-style: none;
  flex: 1;
}

.cr-license-card__feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #CBD5E1;
}

.cr-license-card__feature + .cr-license-card__feature {
  margin-top: 8px;
}

.cr-license-card__feature--pro {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.16);
}

.cr-license-card__feature--warn {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.22);
  color: #FDE68A;
}

.cr-license-card__feature--con {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #94A3B8;
}

.cr-license-card__feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.cr-license-card__feature--pro .cr-license-card__feature-icon {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

.cr-license-card__feature--pro .cr-license-card__feature-icon::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #86EFAC;
}

.cr-license-card__feature--warn .cr-license-card__feature-icon {
  background: rgba(251, 191, 36, 0.16);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.cr-license-card__feature--warn .cr-license-card__feature-icon::after {
  content: "!";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #FCD34D;
}

.cr-license-card__feature--con .cr-license-card__feature-icon {
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.cr-license-card__feature--con .cr-license-card__feature-icon::after {
  content: "−";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #94A3B8;
}

.cr-license-card__foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 16px 22px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}

.cr-license-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cr-license-card__btn--legal {
  color: #F8FAFC;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  border: 1px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.cr-license-card__btn--legal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.cr-license-card__btn--cta {
  color: #0F172A;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9956C 100%);
  border: 1px solid rgba(201, 149, 108, 0.5);
  box-shadow: 0 6px 20px rgba(201, 149, 108, 0.4);
}

.cr-license-card__btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 149, 108, 0.5);
}

@media (max-width: 768px) {
  .cr-license-card--featured {
    transform: none;
  }

  .cr-license-card--featured:hover {
    transform: translateY(-4px);
  }
}

.methodology__grid--compact {
  grid-template-columns: repeat(3, 1fr);
}

/* Verdict block — cr-verdict */
.cr-verdict {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cr-verdict__main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 55% at 50% -15%, rgba(201, 149, 108, 0.2) 0%, transparent 62%),
    linear-gradient(165deg, #1a2438 0%, #0f172a 52%, #0b1220 100%);
  border: 1px solid rgba(201, 149, 108, 0.32);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.24),
    0 0 48px rgba(201, 149, 108, 0.1);
}

.cr-verdict__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
  pointer-events: none;
}

.cr-verdict__glow {
  position: absolute;
  top: -35%;
  left: 50%;
  width: 120%;
  height: 75%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(201, 149, 108, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.cr-verdict__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-verdict__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cr-verdict__logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(201, 149, 108, 0.28);
}

.cr-verdict__rank {
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8C9A0;
}

.cr-verdict__name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}

.cr-verdict__score {
  flex-shrink: 0;
  padding: 12px 16px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(145deg, rgba(201, 149, 108, 0.24) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(201, 149, 108, 0.42);
  box-shadow: 0 0 28px rgba(201, 149, 108, 0.18);
}

.cr-verdict__score-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #E8C9A0;
}

.cr-verdict__score-max {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
}

.cr-verdict__highlights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-verdict__highlight {
  padding: 14px 12px;
  text-align: center;
  background: rgba(15, 23, 42, 0.55);
}

.cr-verdict__highlight strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}

.cr-verdict__highlight span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748B;
}

.cr-verdict__pros {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 18px 24px 0;
  list-style: none;
}

.cr-verdict__pros li {
  padding: 12px 12px 12px 36px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #CBD5E1;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.16);
  position: relative;
}

.cr-verdict__pros li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  color: #86EFAC;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.cr-verdict__minus {
  position: relative;
  z-index: 1;
  margin: 16px 24px 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #FDE68A;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.24);
}

.cr-verdict__minus strong {
  color: #FCD34D;
}

.cr-verdict__quote {
  position: relative;
  z-index: 1;
  margin: 16px 24px 0;
  padding: 18px 20px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #C9956C;
}

.cr-verdict__quote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #E2E8F0;
  font-style: italic;
}

.cr-verdict__quote cite {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94A3B8;
}

.cr-verdict__cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px 24px;
}

.cr-verdict__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cr-verdict__btn--primary {
  color: #0F172A;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9956C 100%);
  border: 1px solid rgba(201, 149, 108, 0.5);
  box-shadow: 0 6px 20px rgba(201, 149, 108, 0.4);
}

.cr-verdict__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 149, 108, 0.5);
}

.cr-verdict__btn--ghost {
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cr-verdict__btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 149, 108, 0.45);
  background: rgba(201, 149, 108, 0.1);
}

.cr-fit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cr-fit__col {
  padding: 22px 20px 20px;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08);
}

.cr-fit__col--yes {
  border-top: 3px solid #22C55E;
  box-shadow:
    0 10px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(34, 197, 94, 0.08);
}

.cr-fit__col--no {
  border-top: 3px solid #EF4444;
  box-shadow:
    0 10px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(239, 68, 68, 0.06);
}

.cr-fit__head-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cr-fit__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.cr-fit__icon--yes {
  color: #166534;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.15);
}

.cr-fit__icon--no {
  color: #B91C1C;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.12);
}

.cr-fit__head {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0F172A;
}

.cr-fit__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-fit__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
}

.cr-fit__list li + li {
  margin-top: 10px;
}

.cr-fit__col--yes .cr-fit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.cr-fit__col--no .cr-fit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

@media (max-width: 768px) {
  .cr-verdict__head {
    flex-wrap: wrap;
    padding: 20px 18px 16px;
  }

  .cr-verdict__highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .cr-verdict__pros {
    grid-template-columns: 1fr;
    padding: 16px 18px 0;
  }

  .cr-verdict__minus,
  .cr-verdict__quote {
    margin-left: 18px;
    margin-right: 18px;
  }

  .cr-verdict__cta {
    padding: 18px 18px 20px;
  }

  .cr-verdict__btn {
    width: 100%;
  }
}

.cr-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.cr-links__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cr-links__card:hover {
  border-color: rgba(201, 149, 108, 0.45);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.cr-links__thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.cr-links__thumb--logo {
  object-fit: contain;
  background: rgba(15, 23, 42, 0.04);
  padding: 6px;
}

.cr-links__name {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.cr-links__meta {
  margin: 0;
  font-size: 12px;
  color: #64748B;
}

.cr-disclaimer {
  margin: 0;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-left: 3px solid #0F172A;
}

.page-casino-review .section-prose a,
.page-casino-review .section-desc a,
.page-casino-review .faq-item__answer a {
  color: #8B5E3C;
  font-weight: 600;
}

.page-casino-review .section-prose a:hover,
.page-casino-review .section-desc a:hover,
.page-casino-review .faq-item__answer a:hover {
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .cr-payout-tests,
  .cr-license-split,
  .cr-fit,
  .cr-links,
  .methodology__grid--compact {
    grid-template-columns: 1fr;
  }

  .cr-payout-test--fast {
    transform: none;
  }

  .cr-showcase__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cr-showcase__bar-row {
    grid-template-columns: 60px 1fr 32px;
  }
}

.page-slot-review .sr-prose a {
  color: #8B5E3C;
  font-weight: 600;
}

.page-slot-review .sr-prose a:hover {
  color: var(--text-primary);
}

/* ── Contrast boost — match hub pages (bonusy, kasyna) ── */

.page-slot-review .sr-hero__bg img {
  opacity: 0.48;
  filter: saturate(1.25);
}

.page-slot-review .sr-hero__bg::after {
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.88) 50%, rgba(22, 32, 50, 0.82) 100%);
}

.page-slot-review .sr-panel {
  background: linear-gradient(155deg, rgba(201, 149, 108, 0.1) 0%, #FFFFFF 42%);
  border: 1px solid rgba(201, 149, 108, 0.42);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.22);
}

.page-slot-review .sr-panel__score,
.page-slot-review .sr-panel__bar-num {
  color: #8B5E3C;
}

.page-slot-review .sr-strip {
  padding: 28px 0 44px;
  margin-top: 0;
  background: linear-gradient(180deg, #0F172A 0%, #162032 100%);
  border-top: 2px solid rgba(201, 149, 108, 0.45);
  border-bottom: 2px solid rgba(201, 149, 108, 0.2);
}

.page-slot-review .sr-strip__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-slot-review .sr-strip__val {
  color: #E8C9A0;
  font-size: 1.25rem;
}

.page-slot-review .sr-strip__lbl {
  color: #94A3B8;
}

.page-slot-review .sr-section--alt {
  background: linear-gradient(180deg, #E2E9F2 0%, #DAE3EE 100%);
  border-top: 1px solid #CFD8E3;
  border-bottom: 1px solid #CFD8E3;
}

.page-slot-review .sr-section__eyebrow {
  display: inline-block;
  color: #8B5E3C;
  background: rgba(201, 149, 108, 0.14);
  border: 1px solid rgba(201, 149, 108, 0.28);
  border-radius: 100px;
  padding: 5px 14px;
}

.page-slot-review .sr-section__title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-slot-review .sr-section__desc,
.page-slot-review .sr-prose p {
  color: #334155;
}

.page-slot-review .sr-strip__item,
.page-slot-review .sr-checklist__item,
.page-slot-review .sr-dial,
.page-slot-review .sr-ledger__card,
.page-slot-review .sr-lab,
.page-slot-review .sr-family,
.page-slot-review .sr-echo__card,
.page-slot-review .sr-fit__col,
.page-slot-review .sr-casino,
.page-slot-review .sr-related__card,
.page-slot-review .sr-demo-box {
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.09);
}

.page-slot-review .sr-checklist__num,
.page-slot-review .sr-strip__val,
.page-slot-review .sr-dial__num,
.page-slot-review .sr-ledger__range,
.page-slot-review .sr-rtp__tier-val,
.page-slot-review .sr-verdict__num,
.page-slot-review .sr-ladder__rank {
  color: #8B5E3C;
}

.page-slot-review .sr-checklist__item {
  border-top: 3px solid rgba(201, 149, 108, 0.45);
}

.page-slot-review .sr-figure {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
}

.page-slot-review .sr-figure__caption {
  background: #F8FAFC;
  color: #475569;
  border-top-color: rgba(15, 23, 42, 0.08);
}

.page-slot-review .sr-lab__table th,
.page-slot-review .sr-family__table th {
  background: linear-gradient(180deg, #0F172A 0%, #162032 100%);
  color: #CBD5E1;
  border-bottom: 2px solid rgba(201, 149, 108, 0.45);
}

.page-slot-review .sr-lab__table td,
.page-slot-review .sr-family__table td {
  color: #334155;
}

.page-slot-review .sr-family__table tr.is-current td {
  background: linear-gradient(90deg, rgba(201, 149, 108, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
  color: var(--text-primary);
  font-weight: 500;
}

.page-slot-review .sr-ledger__card--hot {
  border-color: rgba(201, 149, 108, 0.45);
  background: linear-gradient(160deg, rgba(201, 149, 108, 0.12) 0%, #FFFFFF 55%);
}

.page-slot-review .sr-verdict {
  background: linear-gradient(145deg, rgba(201, 149, 108, 0.14) 0%, #FFFFFF 50%);
  border-color: rgba(201, 149, 108, 0.42);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.page-slot-review .sr-verdict__num {
  color: #8B5E3C;
}

.page-slot-review .sr-casino:hover,
.page-slot-review .sr-related__card:hover {
  border-color: rgba(201, 149, 108, 0.55);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14);
}

.page-slot-review .sr-casino__link {
  color: #8B5E3C;
}

.page-slot-review .sr-demo-box {
  border-color: rgba(201, 149, 108, 0.38);
  background: linear-gradient(155deg, rgba(201, 149, 108, 0.08) 0%, #FFFFFF 55%);
}

.page-slot-review .sr-disclaimer {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-left: 3px solid #0F172A;
  color: #475569;
}

.page-slot-review .faq-item {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
}

.page-slot-review .faq-item[open] {
  border-color: rgba(201, 149, 108, 0.45);
  background: linear-gradient(155deg, rgba(201, 149, 108, 0.1) 0%, #FFFFFF 58%);
}

.page-slot-review .faq-item__question::after {
  color: #C9956C;
  background: rgba(201, 149, 108, 0.12);
  border-color: rgba(201, 149, 108, 0.28);
}

.page-slot-review .faq-item[open] .faq-item__question::after {
  background: rgba(201, 149, 108, 0.22);
  border-color: rgba(201, 149, 108, 0.45);
}

.page-slot-review .faq-item__answer a {
  color: #8B5E3C;
}

.page-slot-review .breadcrumbs {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 900px) {
  .sr-hero__inner {
    grid-template-columns: 1fr;
  }

  .sr-hero__panel {
    order: -1;
  }

  .sr-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sr-checklist {
    grid-template-columns: repeat(2, 1fr);
  }

  .sr-split,
  .sr-rtp,
  .sr-fit,
  .sr-verdict {
    grid-template-columns: 1fr;
  }

  .sr-ledger,
  .sr-casinos,
  .sr-echo,
  .sr-related {
    grid-template-columns: 1fr;
  }

  .sr-figure,
  .sr-figure--left {
    float: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 28px;
  }
}

@media (max-width: 520px) {
  .sr-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sr-checklist {
    grid-template-columns: 1fr;
  }
}

.hero__author-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 250, 252, 0.28);
  transition: border-color 0.2s ease;
}

.hero__author-name a:hover,
.hero__author-name a:focus-visible {
  border-bottom-color: currentColor;
}
