/* ── Design tokens (extracted from the original build) ──────────────── */
:root {
  --background: oklch(12% 0.005 280);
  --foreground: oklch(98% 0 0);
  --card: oklch(16% 0.008 280);
  --muted: oklch(22% 0.01 280);
  --muted-foreground: oklch(65% 0.01 280);
  --border: oklch(100% 0 0 / 0.08);

  --primary: oklch(92% 0.22 125);
  --primary-foreground: oklch(10% 0 0);

  --neon-lime: oklch(92% 0.22 125);
  --neon-cyan: oklch(85% 0.18 210);
  --neon-magenta: oklch(70% 0.32 330);

  --font-sans: "Inter", sans-serif;
  --font-display: "Space Grotesk", sans-serif;

  --radius: 0.5rem;
  --radius-2xl: 1rem;
  --max-w: 80rem;
}

/* ── Reset & base ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Glow helpers ───────────────────────────────────────────────────── */
.glow-lime {
  color: var(--neon-lime);
  text-shadow: 0 0 18px color-mix(in oklab, var(--neon-lime) 65%, transparent);
}
.glow-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 18px color-mix(in oklab, var(--neon-cyan) 65%, transparent);
}
.glow-magenta {
  color: var(--neon-magenta);
  text-shadow: 0 0 18px color-mix(in oklab, var(--neon-magenta) 65%, transparent);
}

.glow-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.glow-blob--magenta {
  background: var(--neon-magenta);
}
.glow-blob--cyan {
  background: var(--neon-cyan);
}

.grid-overlay {
  background-image: linear-gradient(
      to right,
      oklch(100% 0 0 / 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, oklch(100% 0 0 / 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn-neon {
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  transition: box-shadow 0.25s ease, transform 0.1s ease;
}
.btn-neon:hover {
  box-shadow: 0 0 28px color-mix(in oklab, var(--neon-lime) 60%, transparent);
}
.btn-neon:active {
  transform: scale(0.98);
}
.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}
.btn-ghost {
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  transition: color 0.2s ease;
}
.btn-ghost:hover {
  color: var(--foreground);
}

/* ── Header ─────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(12px);
}
.header__inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.nav {
  display: none;
  gap: 2rem;
}
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.nav a:hover {
  color: var(--foreground);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Ticker ─────────────────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 60%, transparent);
  padding-block: 0.625rem;
}
.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 32s linear infinite;
}
.ticker__item {
  display: flex;
  align-items: center;
}
.ticker__item span.txt {
  padding-inline: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: var(--muted-foreground);
}
.ticker__item span.dot {
  color: var(--neon-lime);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  z-index: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in oklab, var(--background) 40%, transparent),
    color-mix(in oklab, var(--background) 70%, transparent),
    var(--background)
  );
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  padding-block: 6rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 60%, transparent);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.hero__title {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.hero__sub {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.hero__chips {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.hero__chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.jackpot-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}
.jackpot-card__amount {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 3.75rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.divider {
  height: 1px;
  width: 100%;
  background: var(--border);
  margin-block: 1.5rem;
}
.jackpot-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.jackpot-card__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.jackpot-card__stats span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.neon-pulse {
  animation: neon-pulse 2.4s ease-in-out infinite;
}
@keyframes neon-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px color-mix(in oklab, var(--neon-lime) 40%, transparent);
  }
  50% {
    box-shadow: 0 0 40px color-mix(in oklab, var(--neon-lime) 70%, transparent);
  }
}

/* ── Sections ───────────────────────────────────────────────────────── */
.section {
  position: relative;
  padding-block: 5rem;
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.section__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.section__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.section__link:hover {
  color: var(--foreground);
}

.grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-4 {
  grid-template-columns: 1fr;
}

/* ── Cards (shared) ─────────────────────────────────────────────────── */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card--lime:hover {
  border-color: color-mix(in oklab, var(--neon-lime) 60%, transparent);
  box-shadow: 0 0 32px color-mix(in oklab, var(--neon-lime) 18%, transparent);
}
.card--cyan:hover {
  border-color: color-mix(in oklab, var(--neon-cyan) 60%, transparent);
  box-shadow: 0 0 32px color-mix(in oklab, var(--neon-cyan) 18%, transparent);
}
.card--magenta:hover {
  border-color: color-mix(in oklab, var(--neon-magenta) 60%, transparent);
  box-shadow: 0 0 32px color-mix(in oklab, var(--neon-magenta) 18%, transparent);
}

.play {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neon-lime);
  transition: transform 0.2s ease;
}
.play:hover {
  transform: translateX(2px);
}

/* ── Casino card ────────────────────────────────────────────────────── */
.casino {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.casino__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.rank {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted-foreground);
}
.tag {
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.casino__logo {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}
.casino__logo span {
  color: var(--muted-foreground);
}
.casino__name {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.casino__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.casino__bonus {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.casino__bonus p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.casino__bonus span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.casino__rating {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-display);
}
.casino__rating .stars {
  color: var(--neon-lime);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px color-mix(in oklab, var(--neon-lime) 55%, transparent);
}
.casino__rating strong {
  font-size: 1rem;
  font-weight: 700;
}
.casino__rating .of {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.casino__actions {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.casino__actions .play {
  margin: 0;
}
.visit {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 0.7rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.visit:hover {
  color: var(--foreground);
  border-color: color-mix(in oklab, var(--neon-lime) 50%, transparent);
}

/* ── Lotteries ──────────────────────────────────────────────────────── */
.lotteries {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 30%, transparent);
  padding-block: 5rem;
}
.lotteries .container {
  position: relative;
  z-index: 1;
}
.lotto {
  padding: 1.75rem;
}
.lotto__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lotto__head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.lotto__icon {
  font-size: 1.1rem;
  filter: grayscale(0.4);
}
.lotto__amount {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
}
.lotto .eyebrow {
  margin-top: 1.5rem;
}
.lotto__clock {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.lotto .play {
  margin-top: 1.5rem;
}

/* ── Category card ──────────────────────────────────────────────────── */
.cat {
  overflow: hidden;
}
.cat__media {
  position: relative;
  height: 11rem;
  overflow: hidden;
}
.cat__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.5s ease;
}
.cat:hover .cat__media img {
  transform: scale(1.05);
}
.cat__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--card),
    color-mix(in oklab, var(--card) 30%, transparent),
    transparent
  );
}
.cat__body {
  padding: 1.5rem;
}
.cat__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.cat__body p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.cat__body .play {
  margin-top: 1.25rem;
  color: var(--foreground);
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 30%, transparent);
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem 0;
}
.footer__brand p:last-child {
  margin-top: 1rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.footer__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.footer__col a:hover {
  color: var(--foreground);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-block: 2rem;
}
.footer__bottom p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.age {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.1rem 0.375rem;
  font-weight: 700;
  color: var(--neon-magenta);
  flex-shrink: 0;
}
.footer__copy {
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-block: 8rem;
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ════════════════════════════════════════════════════════════════════
   REVIEW PAGE  (template for /reviews/*.html)
   ════════════════════════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  padding-top: 2rem;
}
.breadcrumb a:hover {
  color: var(--foreground);
}
.breadcrumb .sep {
  opacity: 0.5;
}

/* Review hero */
.rev-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.rev-hero .glow-blob {
  opacity: 0.35;
}
.rev-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding-block: 2.5rem 3rem;
}
.rev-id {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.rev-logo {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  flex-shrink: 0;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-align: center;
}
.rev-logo span {
  color: var(--muted-foreground);
  display: block;
}
.rev-id h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.rev-tags {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Score badge */
.score-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.25rem 1.5rem;
}
.score-badge__num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--neon-lime);
  text-shadow: 0 0 24px color-mix(in oklab, var(--neon-lime) 55%, transparent);
}
.score-badge__num small {
  font-size: 1rem;
  color: var(--muted-foreground);
  text-shadow: none;
}
.score-badge__meta {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}
.score-badge__meta strong {
  display: block;
  color: var(--foreground);
  font-size: 0.9rem;
}
.rev-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Quick facts */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.facts > div {
  background: var(--card);
  padding: 1rem 1.25rem;
}
.facts dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}
.facts dd {
  margin: 0.25rem 0 0;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Generic review section */
.rev-section {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.rev-section > h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.rev-section > p {
  margin-top: 1rem;
  max-width: 60ch;
  color: var(--muted-foreground);
  line-height: 1.7;
}
.rev-section > p + p {
  margin-top: 0.85rem;
}

/* Sub-scores with bars */
.subscores {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}
.subscore {
  display: grid;
  grid-template-columns: 9rem 1fr 2.5rem;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
}
.subscore .bar {
  height: 8px;
  border-radius: 9999px;
  background: var(--muted);
  overflow: hidden;
}
.subscore .bar > span {
  display: block;
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(
    90deg,
    var(--neon-cyan),
    var(--neon-lime)
  );
  box-shadow: 0 0 14px color-mix(in oklab, var(--neon-lime) 45%, transparent);
}
.subscore strong {
  font-family: var(--font-display);
  text-align: right;
}

/* Pros & cons */
.proscons {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
}
.proscons__col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
}
.proscons__col h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.proscons ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.proscons li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}
.proscons li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.pros li::before {
  content: "✓";
  color: var(--neon-lime);
}
.cons li::before {
  content: "✕";
  color: var(--neon-magenta);
}

/* Comparison table */
.compare {
  margin-top: 1.5rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.compare th,
.compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  background: var(--card);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}
.compare tbody tr:hover {
  background: color-mix(in oklab, var(--card) 60%, transparent);
}
.compare .score-cell {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--neon-lime);
}

/* Methodology badges */
.method {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.method__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.25rem;
}
.method__item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.method__item p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Disclaimer box */
.disclaimer-box {
  margin-block: 2.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: color-mix(in oklab, var(--card) 50%, transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.25rem 1.5rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .rev-hero__inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    padding-block: 3rem 3.5rem;
  }
  .facts {
    grid-template-columns: repeat(4, 1fr);
  }
  .proscons {
    grid-template-columns: 1fr 1fr;
  }
  .method {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Current-page markers (non-clickable, avoid self-links) ──────────── */
.nav .is-current {
  color: var(--foreground);
  font-weight: 600;
  cursor: default;
}
.footer__col .is-current {
  color: var(--foreground);
  cursor: default;
}
.header__actions .is-current {
  cursor: default;
  opacity: 0.9;
}
.logo.is-current {
  cursor: default;
}
.muted-note {
  color: var(--muted-foreground);
  font-size: 0.8rem;
}

/* ── Article lead illustration (generated cover art) ────────────────── */
.guide-hero {
  margin: 2rem 0 0;
}
.guide-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
}
.cat__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ── Operator card banner (generated review artwork) ────────────────── */
.casino { overflow: hidden; }
.casino__media {
  display: block;
  margin: -1px -1px 0.25rem;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.casino__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.casino:hover .casino__media img { transform: scale(1.04); }

/* ══════════════════════════════════════════════════════════════════════
   LIGHT EXECUTIVE THEME OVERRIDE  (slovensko-casino.com)
   Svetly editorial vzhlad podla Stitch macketa "Light Executive":
   ivory podklad, smaragd + zlato, Playfair Display + Hanken Grotesk,
   ziadny neon. Blok je posledny v styles.css -> vyhrava kaskadu.
   theme.css nastavuje len :root farebne tokeny (--background/--neon-*).
   ══════════════════════════════════════════════════════════════════════ */
:root {
  --font-sans: "Hanken Grotesk", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --emerald: #064e3b;
  --emerald-deep: #003527;
  --gold: #d4af37;
  --gold-2: #fed65b;
  --gold-grad: linear-gradient(135deg, #ffe088 0%, #fed65b 100%);
  --cream: #f4f3f2;
  --ink: #1a1c1c;
  --muted-ink: #404944;
  --sage-border: rgba(6, 78, 59, 0.14);
  --card: #ffffff;
  --muted: #f4f3f2;
  --muted-foreground: #404944;
  --border: rgba(6, 78, 59, 0.14);
  --radius: 0.25rem;
  --radius-2xl: 0.5rem;
}

body { background: var(--background); color: var(--ink); }

/* kill the neon: coloured text, no glow */
.glow-lime { color: var(--emerald); text-shadow: none; }
.glow-cyan { color: var(--emerald); text-shadow: none; }
.glow-magenta { color: #9a7b12; text-shadow: none; }
.glow-blob { display: none !important; }
.grid-overlay, .hero__grid { display: none !important; }
.neon-pulse { animation: none !important; }

/* header: executive top border */
.header {
  background: rgba(250, 249, 248, 0.92);
  backdrop-filter: blur(10px);
  border-top: 4px solid var(--emerald-deep);
  border-bottom: 1px solid var(--sage-border);
}
.logo { font-family: var(--font-display); color: var(--emerald-deep); font-weight: 700; letter-spacing: -0.01em; }
.logo .glow-lime { color: var(--gold); }
.nav a { color: var(--muted-ink); font-weight: 600; }
.nav a:hover { color: var(--emerald); }
.header__actions .btn-ghost { border-color: var(--emerald); color: var(--emerald); }

/* ticker: emerald band */
.ticker { background: var(--emerald-deep); border-block: none; }
.ticker__item, .ticker__item * { color: #e8efe9 !important; text-shadow: none !important; letter-spacing: 0.08em; }

/* hero */
.hero { background: var(--background); }
.hero__veil { background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(250,249,248,0.9)); }
.hero__title { font-family: var(--font-display); color: var(--emerald-deep); font-weight: 700; }
.hero__title .glow-lime { color: var(--emerald); }
.hero__sub { color: var(--muted-ink); }
.badge {
  background: var(--cream); color: var(--emerald-deep);
  border: 1px solid var(--sage-border); text-shadow: none;
  letter-spacing: 0.1em; font-weight: 700;
}
.badge.glow-lime { color: var(--emerald-deep); }
.hero__chips span { color: var(--muted-ink); }

/* buttons */
.btn-neon {
  background: var(--gold-grad); color: var(--emerald-deep);
  border: none; font-weight: 700; box-shadow: 0 6px 18px rgba(6,78,59,0.10);
}
.btn-neon:hover { filter: brightness(1.03); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--emerald); color: var(--emerald); background: transparent; }
.btn-ghost:hover { background: rgba(6,78,59,0.05); }
.play { color: var(--emerald); text-shadow: none; }
.play:hover { color: var(--gold); }

/* editors pick card (repurposed jackpot card) */
.jackpot-card {
  background: var(--card); border: 1px solid var(--sage-border);
  box-shadow: 0 10px 30px rgba(6,78,59,0.06); border-radius: var(--radius-2xl);
}
.jackpot-card .eyebrow { color: var(--gold); }
.jackpot-card__amount { font-family: var(--font-display); color: var(--emerald-deep); text-shadow: none; }
.divider { background: var(--sage-border); }
.jackpot-card__stats strong { color: var(--emerald-deep); font-family: var(--font-display); }
.jackpot-card__stats span { color: var(--muted-ink); }

/* sections and headings */
.section__title { font-family: var(--font-display); color: var(--emerald-deep); }
.eyebrow { color: var(--gold); text-shadow: none; letter-spacing: 0.12em; font-weight: 700; }
.eyebrow.glow-lime, .eyebrow.glow-cyan { color: var(--gold); }
.section__link { color: var(--emerald); }
.section__link:hover { color: var(--gold); }

/* generic cards / category tiles */
.card, .cat {
  background: var(--card); border: 1px solid var(--sage-border);
  border-radius: var(--radius-2xl); box-shadow: none;
}
.card:hover, .cat:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(6,78,59,0.06); }
.card--lime, .card--cyan, .card--magenta { border-top: 3px solid var(--emerald-deep); }
.cat__body h3, .card h3 { font-family: var(--font-display); color: var(--emerald-deep); }
.cat__body p, .card p { color: var(--muted-ink); }

/* operator card */
.casino {
  background: var(--card); border: 1px solid var(--sage-border);
  border-radius: var(--radius-2xl); box-shadow: none;
}
.casino:hover { border-color: var(--gold); box-shadow: 0 12px 34px rgba(6,78,59,0.07); }
.rank { font-family: var(--font-display); color: var(--gold); }
.tag { background: var(--cream); color: var(--emerald-deep); border: 1px solid var(--sage-border); }
.casino__logo { font-family: var(--font-display); color: var(--emerald-deep); }
.casino__name { color: var(--emerald-deep); }
.casino__desc { color: var(--muted-ink); }
.casino__bonus p { color: var(--emerald); text-shadow: none; }
.casino__bonus span { color: var(--muted-ink); }
.casino__rating { color: var(--gold); font-family: var(--font-display); }
.casino__rating span { color: var(--muted-ink); }

/* score badge (seal) */
.score-badge { background: var(--card); border: 2px solid var(--gold); box-shadow: none; }
.score-badge__num { font-family: var(--font-display); color: var(--emerald-deep); text-shadow: none; }
.score-badge__meta { color: var(--muted-ink); }

/* review page */
.rev-hero, .rev-section { background: transparent; }
.rev-hero__inner { background: var(--cream); border: 1px solid var(--sage-border); border-radius: var(--radius-2xl); }
.rev-logo { font-family: var(--font-display); color: var(--emerald-deep); }
.rev-section h2 { font-family: var(--font-display); color: var(--emerald-deep); }
.rev-tags .tag { background: var(--cream); }

/* quick facts */
.facts { background: var(--card); border: 1px solid var(--sage-border); border-radius: var(--radius-2xl); }
.facts dt { color: var(--muted-ink); }
.facts dd { color: var(--emerald-deep); }

/* subscores */
.subscore span:first-child { color: var(--muted-ink); }
.subscore .bar { background: var(--cream); }
.subscore .bar span { background: linear-gradient(90deg, var(--emerald), var(--gold)); }
.subscore strong { color: var(--emerald-deep); }

/* pros / cons */
.proscons__col { background: var(--card); border: 1px solid var(--sage-border); border-radius: var(--radius-2xl); }
.proscons li { color: var(--muted-ink); }

/* compare table */
.compare { background: var(--card); border: 1px solid var(--sage-border); }
.compare thead th { background: var(--emerald-deep); color: #f1f5f2; font-family: var(--font-display); }
.compare td, .compare th { border-color: var(--sage-border); color: var(--ink); }
.compare tbody tr:nth-child(even), .compare tr:nth-child(even) { background: var(--cream); }

/* disclaimer box */
.disclaimer-box { background: #f1f5f2; border: 1px solid var(--sage-border); color: var(--muted-ink); }
.age { background: var(--emerald-deep); color: #fff; }

/* footer: emerald */
.footer { background: var(--emerald-deep); color: #cdd8d1; border-top: none; }
.footer__brand, .footer__title { color: #fff; font-family: var(--font-display); }
.footer a { color: #cdd8d1; }
.footer a:hover { color: var(--gold-2); }
.footer__bottom, .footer__copy { color: #9fb1a7; border-top: 1px solid rgba(255,255,255,0.10); }

/* guides */
.guide-hero h1, .guide-body h2 { font-family: var(--font-display); color: var(--emerald-deep); }

/* ══════════════════════════════════════════════════════════════════════
   EXECUTIVE HOME SKELETON (slovensko-casino) — bespoke chassis from the
   Light Executive Stitch mockup. Distinct from the generic engine layout:
   image hero, featured bento, editorial split, operators data table.
   ══════════════════════════════════════════════════════════════════════ */
.ex-main { padding-bottom: 4rem; }
.ex-sec { margin-top: 4.5rem; }
.header--exec { position: sticky; top: 0; }

/* eyebrow */
.ex-eyebrow { font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 0.72rem; color: var(--gold); }
.ex-eyebrow--dark { color: #9a7b12; }

/* hero: full-bleed image + emerald gradient, white text */
.ex-hero { position: relative; background-size: cover; background-position: center;
  min-height: 560px; display: flex; align-items: flex-end;
  border-bottom: 4px solid var(--gold); }
.ex-hero__veil { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,53,39,0.35) 0%, rgba(0,53,39,0.72) 55%, rgba(0,33,23,0.95) 100%); }
.ex-hero__inner { position: relative; z-index: 2; padding-block: 3.5rem; color: #fff; max-width: 62rem; }
.ex-hero .ex-eyebrow { color: var(--gold-2); }
.ex-title { font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.04; letter-spacing: -0.02em; margin: 0.6rem 0 0.9rem; }
.ex-title span { color: var(--gold-2); }
.ex-sub { color: rgba(255,255,255,0.82); font-size: 1.1rem; line-height: 1.6; max-width: 40rem; }
.ex-hero__cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.6rem; }
.btn-ghost--onimg { border: 1px solid rgba(255,255,255,0.6); color: #fff; }
.btn-ghost--onimg:hover { background: rgba(255,255,255,0.12); }
.ex-trust { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.18); }
.ex-trust__item strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-2); line-height: 1; }
.ex-trust__item span { font-size: 0.8rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); }

/* hairline label divider (— TITLE —) */
.hairline-label { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.hairline-label span { height: 1px; background: var(--sage-border); flex: 1; }
.hairline-label h2 { font-family: var(--font-display); color: var(--emerald-deep);
  font-size: 1.7rem; font-weight: 700; white-space: nowrap; }

/* featured bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.bento__card { background: var(--card); border: 1px solid var(--sage-border);
  border-radius: 0.5rem; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, border-color .2s; }
.bento__card:hover { border-color: var(--gold); box-shadow: 0 14px 40px rgba(6,78,59,0.08); }
.bento__card--lead { border: 2px solid var(--gold); grid-row: span 1; }
.bento__media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.bento__media img { width: 100%; height: 100%; object-fit: cover; }
.bento__ribbon { position: absolute; top: 0.8rem; left: 0.8rem; background: var(--gold-grad);
  color: var(--emerald-deep); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 2px; }
.bento__score { position: absolute; bottom: 0.8rem; right: 0.8rem; background: var(--emerald-deep);
  color: var(--gold-2); font-family: var(--font-display); font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 2px; font-size: 0.95rem; }
.bento__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.bento__tag { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.bento__name { font-family: var(--font-display); font-size: 1.4rem; color: var(--emerald-deep); font-weight: 700; }
.bento__desc { color: var(--muted-ink); font-size: 0.95rem; line-height: 1.5; flex: 1; }
.bento__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 0.6rem;
  padding-top: 0.9rem; border-top: 1px solid var(--sage-border); }
.bento__visit { color: var(--emerald); font-weight: 700; font-size: 0.85rem; }
.bento__visit:hover { color: var(--gold); }

/* editorial split */
.editorial { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center;
  background: var(--cream); border: 1px solid var(--sage-border); border-top: 4px solid var(--emerald-deep);
  border-radius: 0.5rem; padding: 3rem; }
.editorial__h { font-family: var(--font-display); color: var(--emerald-deep); font-size: 1.9rem; font-weight: 700; margin: 0.4rem 0 1rem; }
.editorial__p { color: var(--muted-ink); line-height: 1.7; margin-bottom: 1.6rem; }
.editorial__quote { background: var(--emerald-deep); color: #fff; border-radius: 0.5rem; padding: 2rem; position: relative; }
.editorial__mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.5; color: var(--gold-2); height: 2rem; }
.editorial__q { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.5; color: #fff; margin-bottom: 1.2rem; }
.editorial__by { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* operators data table */
.optable-wrap { overflow-x: auto; border: 1px solid var(--sage-border); border-radius: 0.5rem; }
.optable { width: 100%; border-collapse: collapse; background: var(--card); min-width: 720px; }
.optable thead th { background: var(--emerald-deep); color: #f1f5f2; font-family: var(--font-sans);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; text-align: left; padding: 0.9rem 1rem; font-weight: 700; }
.optable td { padding: 0.9rem 1rem; border-top: 1px solid var(--sage-border); color: var(--ink); font-size: 0.92rem; vertical-align: middle; }
.optable tbody tr:hover { background: var(--cream); }
.optable__rank { font-family: var(--font-display); color: var(--gold); font-weight: 700; }
.optable__name a { font-family: var(--font-display); font-weight: 700; color: var(--emerald-deep); font-size: 1.05rem; display: block; }
.optable__name span { font-size: 0.75rem; color: var(--muted-ink); }
.optable__score strong { font-family: var(--font-display); color: var(--emerald-deep); font-size: 1.15rem; }
.optable__score span { color: var(--muted-ink); font-size: 0.8rem; }
.optable__cta a { white-space: nowrap; }

/* latest guides — editorial list */
.glist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--sage-border); border-radius: 0.5rem; overflow: hidden; }
.glist__item { display: flex; flex-direction: column; gap: 0.35rem; padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--sage-border); border-right: 1px solid var(--sage-border); background: var(--card); transition: background .15s; }
.glist__item:hover { background: var(--cream); }
.glist__cat { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.glist__title { font-family: var(--font-display); color: var(--emerald-deep); font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.ex-sec__more { text-align: right; margin-top: 1rem; }

/* final CTA */
.ex-cta { background: var(--emerald-deep); border-radius: 0.5rem; padding: 3.5rem 2rem; text-align: center; color: #fff; }
.ex-cta h2 { font-family: var(--font-display); font-size: 2rem; color: #fff; margin-bottom: 0.6rem; }
.ex-cta p { color: rgba(255,255,255,0.75); max-width: 34rem; margin: 0 auto 1.6rem; }
.btn-neon--onemerald { box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

@media (max-width: 860px) {
  .bento, .editorial, .glist { grid-template-columns: 1fr; }
  .editorial { padding: 2rem; }
  .ex-trust { gap: 1.5rem; }
}

/* ── Hero: solid emerald fill (matches the quote card) instead of image ── */
.ex-hero--solid { background: var(--emerald-deep); min-height: auto; align-items: stretch;
  border-bottom: 4px solid var(--gold); }
.ex-hero--solid .ex-hero__inner { padding-block: 4rem; }

/* ── Featured band: real photo stretched over the section + operator links ── */
.featband { position: relative; background-size: cover; background-position: center; overflow: hidden;
  border-block: 4px solid var(--emerald-deep); margin-top: 4.5rem; }
.featband__veil { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,33,23,0.62) 0%, rgba(0,33,23,0.82) 100%); }
.featband__inner { position: relative; z-index: 2; padding-block: 3.2rem; color: #fff; }
.featband .ex-eyebrow { color: var(--gold-2); }
.featband__head { margin-bottom: 1.8rem; }
.featband__title { font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
.featband__ops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.featband__op { position: relative; display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.09); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.20); border-radius: 0.5rem;
  padding: 1.1rem 1.3rem 1.9rem; color: #fff; transition: background .15s, border-color .15s, transform .15s; }
.featband__op:hover { background: rgba(255,255,255,0.15); border-color: var(--gold-2); transform: translateY(-2px); }
.featband__rank { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-2); line-height: 1; }
.featband__meta { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; min-width: 0; }
.featband__tag { font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.featband__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; }
.featband__score { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--gold-2); }
.featband__go { position: absolute; left: 1.3rem; bottom: 0.7rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.03em; color: rgba(255,255,255,0.7); }
.featband__op:hover .featband__go { color: var(--gold-2); }

@media (max-width: 860px) {
  .featband__ops { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   FONT SYSTEM (slovensko-casino) — editorial + typewriter accent.
   Switch VARIANT here: A = Fraunces / Source Serif 4 / Space Mono
                        B = Bricolage Grotesque / Source Serif 4 / Cutive Mono
   ══════════════════════════════════════════════════════════════════════ */
:root {
  --font-display: "Bricolage Grotesque", Georgia, sans-serif;  /* headlines */
  --font-sans: "Source Serif 4", Georgia, serif;   /* body */
  --font-mono: "Cutive Mono", "Courier New", monospace; /* typewriter labels */
}
body { font-family: var(--font-sans); }
/* typewriter accent on every small caps label */
.ex-eyebrow, .eyebrow, .featband__tag, .glist__cat, .bento__tag,
.optable thead th, .editorial__by, .ex-trust__item span, .label-caps,
.rev-score-meta, .badge, .tag {
  font-family: var(--font-mono); letter-spacing: 0.02em; text-transform: uppercase; }
.ex-title { font-weight: 900; }
.featband__title, .editorial__h, .ex-cta h2 { font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════════
   EXECUTIVE REVIEW SKELETON (slovensko-casino) — from review mockup:
   solid emerald hero + sticky sidebar (TOC + verdict) + drop-cap +
   2-col spec grid + bonus highlight. No operator plate.
   ══════════════════════════════════════════════════════════════════════ */
.ex-hero--review .ex-hero__inner { padding-block: 3rem; }
.revx-id { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.revx-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: 0.02em; }
.revx-logo span { color: var(--gold-2); }
.ex-hero--review .rev-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ex-hero--review .tag { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22); color: #fff; padding: 0.25rem 0.6rem; border-radius: 3px; font-size: 0.66rem; }
.revx-title { font-size: clamp(2rem, 4.5vw, 3rem); }
.revx-aff { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 1.2rem; }

.revx-grid { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; margin-top: 2rem; align-items: start; }
.revx-side { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 1.2rem; }
.revx-toc { background: var(--card); border: 1px solid var(--sage-border); border-radius: 0.5rem; padding: 1.3rem 1.4rem; }
.revx-toc ul { list-style: none; margin: 0.8rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.15rem; }
.revx-toc a { display: block; padding: 0.45rem 0.6rem; border-radius: 4px; color: var(--muted-ink); font-size: 0.9rem; transition: background .12s, color .12s; }
.revx-toc a:hover { background: var(--cream); color: var(--emerald-deep); }
.revx-verdict { background: var(--emerald-deep); color: #fff; border-radius: 0.5rem; padding: 1.6rem 1.4rem; text-align: center; }
.revx-verdict .ex-eyebrow { color: var(--gold-2); }
.revx-score { font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; color: var(--gold-2); line-height: 1; margin: 0.5rem 0 1rem; }
.revx-score span { font-size: 1.1rem; color: rgba(255,255,255,0.6); }
.revx-verdict .btn-neon { width: 100%; }

.revx-main { min-width: 0; }
.revx-card { background: var(--card); border: 1px solid var(--sage-border); border-radius: 0.5rem; padding: 2rem 2.2rem; margin-bottom: 1.5rem; }
.revx-card > h2 { font-family: var(--font-display); color: var(--emerald-deep); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.revx-card > p { color: var(--muted-ink); line-height: 1.7; }
.revx-card--exec { border-top: 4px solid var(--emerald-deep); }
.revx-card--flat { background: none; border: none; padding: 0; }
.revx-drop::first-letter { font-family: var(--font-display); font-size: 3.4rem; line-height: 0.8; float: left; padding: 0.1rem 0.6rem 0 0; color: var(--emerald-deep); font-weight: 800; }

.revx-specgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
.spec { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--sage-border); }
.spec dt { font-family: var(--font-mono); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.04em; color: var(--muted-ink); }
.spec dd { font-weight: 700; color: var(--emerald-deep); text-align: right; }

.revx-bonushi { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border: 2px solid var(--gold); border-radius: 0.5rem; padding: 1rem 1.3rem; margin-bottom: 1.2rem; background: #fffdf5; }
.revx-bonushi strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--emerald-deep); }

@media (max-width: 900px) {
  .revx-grid { grid-template-columns: 1fr; }
  .revx-side { position: static; flex-direction: row; flex-wrap: wrap; }
  .revx-toc, .revx-verdict { flex: 1; min-width: 220px; }
  .revx-specgrid { grid-template-columns: 1fr; }
}

/* listing table — bonus column */
.optable__bonus strong { font-family: var(--font-display); color: var(--emerald-deep); font-weight: 700; display: block; }
.optable__bonus span { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; color: var(--muted-ink); }

/* footer brand logo — light on the emerald footer */
.footer .logo { color: #fff; }
.footer .logo .glow-lime { color: var(--gold-2); }

/* ══════════════════════════════════════════════════════════════════════
   HEADER NAV — fixed size, colour-only state change (no reflow/jumping),
   + mobile header (scrollable nav row).
   ══════════════════════════════════════════════════════════════════════ */
.nav a, .nav .is-current {
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0; text-transform: none; text-decoration: none;
  color: var(--muted-ink); transition: color .15s ease; }
.nav a:hover, .nav a:active { color: var(--emerald-deep); }
.nav .is-current { color: var(--emerald-deep); cursor: default; }

@media (max-width: 767px) {
  .header__inner { flex-wrap: wrap; height: auto; row-gap: 0.4rem; padding-block: 0.55rem; }
  .header__inner .logo { margin-right: auto; }
  .nav { display: flex; order: 3; width: 100%; overflow-x: auto; gap: 1.3rem;
    padding-bottom: 0.2rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  .nav a, .nav .is-current { white-space: nowrap; }
  .header__actions .btn-ghost { display: none; }
  .ex-hero__inner { padding-block: 2.5rem; }
  .ex-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .container { padding-inline: 1.1rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   OPERATOR ACCORDION (listing /stavky) — expandable "showcase" rows.
   Native <details>, no JS: click a row -> facts + CTA reveal in blocks.
   ══════════════════════════════════════════════════════════════════════ */
.op-acc-list { display: flex; flex-direction: column; gap: 0.8rem; }
.op-acc { background: var(--card); border: 1px solid var(--sage-border); border-radius: 0.5rem;
  overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.op-acc[open] { border-color: var(--gold); box-shadow: 0 12px 34px rgba(6,78,59,0.07); }
.op-acc summary { list-style: none; }
.op-acc summary::-webkit-details-marker { display: none; }
.op-acc__head { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem;
  cursor: pointer; user-select: none; transition: background .12s; }
.op-acc__head:hover { background: var(--cream); }
.op-acc__rank { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--gold); min-width: 1.8rem; }
.op-acc__id { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.op-acc__name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--emerald-deep); }
.op-acc__tag { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; color: var(--muted-ink); letter-spacing: 0.04em; }
.op-acc__score { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--emerald-deep); white-space: nowrap; }
.op-acc__score small { font-size: 0.8rem; color: var(--muted-ink); font-weight: 400; }
.op-acc__chev { font-size: 1.8rem; color: var(--emerald); transition: transform .2s ease; line-height: 1; }
.op-acc[open] .op-acc__chev { transform: rotate(90deg); }
.op-acc__body { padding: 0 1.4rem 1.4rem; }
.op-acc__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem 1.6rem;
  padding: 1.1rem 0; border-top: 1px solid var(--sage-border); }
.op-acc__fact dt { font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase;
  color: var(--muted-ink); letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.op-acc__fact dd { font-weight: 700; color: var(--emerald-deep); font-size: 0.92rem; }
.op-acc__desc { color: var(--muted-ink); line-height: 1.6; margin: 0.2rem 0 1.2rem; }
.op-acc__cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.op-acc__cta .btn-ghost { border: 1px solid var(--emerald); color: var(--emerald); }
.op-acc__cta .btn-ghost:hover { background: rgba(6,78,59,0.05); }
@media (max-width: 720px) {
  .op-acc__facts { grid-template-columns: 1fr 1fr; }
  .op-acc__head { padding: 0.9rem 1rem; gap: 0.7rem; }
}
@media (max-width: 460px) { .op-acc__facts { grid-template-columns: 1fr; } }

/* mobile fixes: solid hero as block (was flex -> content-width overflow) */
.ex-hero--solid { display: block; }
@media (max-width: 767px) {
  .logo { font-size: 1.05rem; }
  .header__actions .btn-neon { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
  .ex-title { font-size: clamp(1.7rem, 7vw, 2.6rem); overflow-wrap: break-word; }
  .ex-sub { font-size: 1rem; max-width: 100%; }
  .featband__title, .hairline-label h2, .editorial__h, .revx-title, .revx-card > h2, .op-acc__name { overflow-wrap: break-word; }
  .ex-trust { gap: 1.2rem 1.8rem; }
  .revx-card { padding: 1.4rem 1.2rem; }
}

/* global overflow guards (flex/grid min-content overflow on mobile) */
html { overflow-x: hidden; }
*:not(.optable):not(.compare) { min-width: 0; }
@media (max-width: 767px) {
  .ex-title { font-size: clamp(1.5rem, 6.4vw, 2.4rem); }
  .ex-hero__inner, .featband__inner { padding-inline: 1.1rem; }
  .ex-trust { gap: 1rem 1.6rem; }
  .ex-trust__item strong { font-size: 1.4rem; }
}
