@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&display=swap');
/* ======================================================
   CasinoClaude - Global Stylesheet
   Modern dark theme with gold accents & subtle motion
   ====================================================== */

/* Twemoji images inside h1 — runtime replacement of flag emoji characters */
h1 img.emoji {
  display: inline-block;
  height: 0.85em;
  width: auto;
  vertical-align: middle;
  margin-left: 0.15em;
}

:root {
  /* casino.guru-style dark navy/charcoal */
  --bg-0: #15202b;
  --bg-1: #1b2733;
  --bg-2: #21303e;
  --bg-3: #283a4a;
  --surface: #1e2a37;
  --surface-hover: #26333f;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #eef3f7;
  --text-muted: #aab6c2;
  --text-dim: #7d8b98;

  /* primary brand accent — casino.guru green */
  --gold: #6cc24a;
  --gold-2: #4ea832;
  --gold-glow: rgba(108, 194, 74, 0.30);

  /* secondary accents */
  --accent: #4aa3ff;
  --accent-2: #9b6cff;

  --success: #6cc24a;
  --danger: #ff5d63;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;

  --shadow-1: 0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 18px 44px rgba(0, 0, 0, 0.5);

  --max-w: 1240px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  background-image:
    radial-gradient(1200px 600px at 10% -20%, rgba(123, 92, 255, 0.18), transparent 60%),
    radial-gradient(1000px 500px at 110% 10%, rgba(255, 169, 40, 0.12), transparent 60%),
    radial-gradient(800px 500px at 50% 110%, rgba(77, 211, 255, 0.08), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ====================== HEADER ====================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.7);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 12px;
}
@media (max-width: 840px) {
  .site-header .container { padding-left: 28px; padding-right: 28px; }
  .header-inner { padding: 14px 0; }
}
@media (max-width: 480px) {
  .site-header .container { padding-left: 22px; padding-right: 22px; }
  .header-inner { padding: 12px 0; }
  .logo { font-size: 18px; }
  .logo-mark { width: 32px; height: 32px; }
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 20px;
  color: var(--text);
  flex-shrink: 0;
}
.logo img {
  height: 68px;
  width: auto;
  max-width: 320px;
  display: block;
  transition: transform 0.3s ease;
}
.logo:hover img { transform: scale(1.03); }
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1208;
  font-weight: 900;
  box-shadow: 0 6px 20px var(--gold-glow);
}
.logo-mark span { font-size: 18px; }
.logo-text .accent { color: var(--gold); }
@media (max-width: 840px) {
  .logo img { height: 60px; }
}
@media (max-width: 480px) {
  .logo img { height: 52px; max-width: 200px; }
}

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

/* Dropdown menus */
.nav .has-dropdown { position: relative; }
.nav .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nav .dropdown-trigger::after {
  content: "▾";
  font-size: 10px;
  margin-top: 2px;
  transition: transform 0.2s ease;
}
.nav .has-dropdown.open .dropdown-trigger { color: var(--text); background: var(--surface-hover); }
.nav .has-dropdown.open .dropdown-trigger::after { transform: rotate(180deg); }
@media (hover: hover) and (pointer: fine) {
  .nav .has-dropdown:hover .dropdown-trigger { color: var(--text); background: var(--surface-hover); }
}
.nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: rgba(15, 15, 25, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 50;
  animation: dropdownIn 0.2s ease;
}
.nav .has-dropdown.open .dropdown-menu { display: flex; }
@media (hover: hover) and (pointer: fine) {
  .nav .has-dropdown:hover .dropdown-menu { display: flex; }
}
.nav .dropdown-menu a {
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  color: var(--text-muted);
}
.nav .dropdown-menu a:hover { color: var(--text); background: var(--surface-hover); }
.nav .dropdown-menu a.active { color: var(--gold); background: rgba(255, 204, 77, 0.08); }

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 840px) {
  .nav .has-dropdown { width: 100%; display: block; }
  .nav .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    display: flex;
  }
  .nav .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 4px;
    margin-bottom: 6px;
    margin-left: 14px;
    padding: 6px 0 6px 8px;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-left: 2px solid var(--border-strong);
    border-radius: 0;
    flex-direction: column;
    animation: none;
  }
  .nav .dropdown-menu a {
    display: block;
    width: 100%;
    white-space: normal;
    padding: 9px 12px;
  }
  .nav .has-dropdown .dropdown-menu { display: none; }
  .nav .has-dropdown.open .dropdown-menu { display: flex; }
}
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.nav a:hover { color: var(--text); background: var(--surface-hover); }
.nav a.active { color: var(--text); background: var(--surface-hover); }
.lang-pill {
  margin-left: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
}
.lang-pill .flag {
  font-size: 15px;
  line-height: 1;
  margin: 0;
  filter: none;
  display: inline-block;
  vertical-align: middle;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 40px; height: 40px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 840px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; padding: 14px;
    background: rgba(10, 10, 20, 0.96); border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; border-radius: 10px; }
  .nav .lang-pill {
    align-self: flex-start;
    margin-left: 14px;
    margin-top: 6px;
    padding: 7px 14px;
    width: auto;
  }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}
/* headings use the Sora display font site-wide (matches the homepage) */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  -webkit-text-fill-color: currentColor !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  margin-bottom: 18px;
  animation: fadeUp 0.8s ease both;
}
.hero p.subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 36px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease both;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(56, 211, 159, 0.15);
  animation: pulse 1.8s infinite;
}

/* Floating background blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.blob.a { width: 420px; height: 420px; background: var(--accent); top: -140px; left: -140px; animation: floatA 12s ease-in-out infinite; }
.blob.b { width: 360px; height: 360px; background: var(--gold); top: 20px; right: -120px; animation: floatB 14s ease-in-out infinite; }

/* ====================== COUNTRY GRID ====================== */
.countries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.country-card {
  --c: var(--gold);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 26px;
  background:
    radial-gradient(120% 90% at 50% -10%, color-mix(in srgb, var(--c) 12%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1), border-color 0.3s ease, box-shadow 0.35s ease;
  overflow: hidden;
  animation: fadeUp 0.9s ease both;
}
.country-card:nth-child(1) { animation-delay: 0.10s; }
.country-card:nth-child(2) { animation-delay: 0.16s; }
.country-card:nth-child(3) { animation-delay: 0.22s; }
.country-card:nth-child(4) { animation-delay: 0.28s; }
.country-card:nth-child(5) { animation-delay: 0.34s; }
.country-card:nth-child(6) { animation-delay: 0.40s; }
.country-card:nth-child(7) { animation-delay: 0.46s; }
.country-card:nth-child(8) { animation-delay: 0.52s; }

/* top accent bar in the flag's colour */
.cc-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c), transparent);
  opacity: 0.55;
  transition: opacity 0.35s ease, height 0.35s ease;
}
/* soft colour glow that fades in on hover */
.country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 200px at 50% -25%, color-mix(in srgb, var(--c) 38%, transparent), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.country-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--c) 55%, var(--border-strong));
  box-shadow: 0 18px 40px -16px color-mix(in srgb, var(--c) 60%, transparent);
}
.country-card:hover::before { opacity: 1; }
.country-card:hover .cc-bar { opacity: 1; height: 4px; }

/* framed "passport" tile around the flag */
.flag-tile {
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.flag {
  font-size: 96px;
  line-height: 1;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5));
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
}
.country-card:hover .flag { transform: scale(1.1) rotate(-3deg); }

.country-name { font-size: 1.18rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.01em; }
.country-meta {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.country-cta {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.country-card:hover .country-cta { gap: 10px; color: color-mix(in srgb, var(--c) 50%, var(--gold)); }

@media (max-width: 760px) {
  .countries { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .flag { font-size: 72px; }
}

/* ====================== PAGE LAYOUT ====================== */
.page-hero {
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  -webkit-text-fill-color: currentColor !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  margin-bottom: 16px;
  animation: fadeUp 0.7s ease both;
}
.page-hero .lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 18px;
  justify-content: center;
}
.breadcrumbs a:hover { color: var(--gold); }
/* breathing room between the sticky header and the top-level breadcrumb */
main > .container > .breadcrumbs { margin-top: 26px; }
.breadcrumbs .sep { opacity: 0.4; }

/* Mobile: tighter vertical padding on page hero */
@media (max-width: 840px) {
  .page-hero { padding: 24px 0; }
}

/* Section heading above casino-list / featured-cards */
.list-heading {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 18px 0 22px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #b9b9d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====================== CASINO LIST ====================== */
.casino-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 50px;
}
.casino-card {
  display: grid;
  grid-template-columns: 200px 1.4fr 1fr 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.7s ease both;
}
.casino-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.casino-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-1);
}
.casino-card:hover::after { opacity: 1; }

.rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1208;
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px var(--gold-glow);
  z-index: 2;
}

.casino-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  padding: 4px;
}
.casino-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.casino-card:hover .casino-thumb img { transform: scale(1.04); }

.casino-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 204, 77, 0.12);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.casino-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}
.casino-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.casino-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.casino-bonus {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bonus-label { font-size: 11.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.bonus-amount {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino-cta { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.casino-cta .review-link {
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border-strong);
  padding: 2px 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.casino-cta .review-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1208;
  box-shadow: 0 8px 24px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px var(--gold-glow); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: var(--surface-hover); }

.btn-block { width: 100%; }

@media (max-width: 900px) {
  .casino-card {
    grid-template-columns: 130px 1fr;
    grid-template-areas:
      "thumb info"
      "bonus bonus"
      "cta cta";
    gap: 14px;
  }
  .casino-thumb {
    grid-area: thumb;
    aspect-ratio: 16 / 10;
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
  }
  .casino-thumb img { object-fit: contain; }
  .casino-info { grid-area: info; }
  .casino-bonus { grid-area: bonus; }
  .casino-cta { grid-area: cta; margin-top: 18px; }
}
@media (max-width: 480px) {
  .casino-card {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "thumb    features"
      "name     features"
      "rating   features"
      "bonus    bonus"
      "cta      cta";
    padding: 16px;
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
  }
  .casino-thumb {
    grid-area: thumb;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 8px;
  }
  /* promote .casino-info children to the card grid */
  .casino-info { display: contents; }
  .casino-info h3 {
    grid-area: name;
    font-size: 1.1rem;
    margin: 0;
  }
  .casino-info .rating {
    grid-area: rating;
    margin: 0;
    justify-self: start;
  }
  .casino-info .casino-features {
    grid-area: features;
    align-self: start;
  }
  .casino-bonus { grid-area: bonus; margin-top: 22px; }
  .casino-cta { grid-area: cta; margin-top: 22px; }
  .btn { font-size: 17px; padding: 16px 26px; }
  .rank-badge { width: 26px; height: 26px; font-size: 12px; top: 10px; left: 10px; }
}

/* ====================== CONTENT ====================== */
.content { padding: 30px 0 80px; }
.content section { margin-bottom: 56px; }

.content h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 12px;
}
.content h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 4px;
}
.content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 26px 0 10px;
  color: var(--text);
}
.content p { margin-bottom: 14px; color: var(--text); }
.content p + p { margin-top: -2px; }
.content strong { color: var(--text); font-weight: 700; }
.content a { color: var(--gold); border-bottom: 1px solid rgba(255, 204, 77, 0.3); transition: border-color 0.2s; }
.content a:hover { border-color: var(--gold); }

/* Lists */
.content ul, .content ol {
  margin: 8px 0 18px;
  padding-left: 22px;
  color: var(--text-muted);
}
.content ul li, .content ol li { margin-bottom: 6px; }
.content ul li::marker { color: var(--gold); }

/* ====================== TABLES ====================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 20px 0 28px;
  background: rgba(255,255,255,0.025);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 600px;
}
table thead { background: rgba(255, 204, 77, 0.07); }
table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-strong);
}
table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
table tr:last-child td { border-bottom: none; }
table tr { transition: background 0.2s ease; }
table tbody tr:hover { background: rgba(255,255,255,0.025); }
table td:first-child, table th:first-child { padding-left: 20px; }

/* ====================== FEATURED CARDS (SE) ====================== */
.featured-cards {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  margin: 30px 0 50px;
}
.feat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.7s ease both;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-1);
}
.feat-card.is-hot {
  background: linear-gradient(180deg, rgba(255, 204, 77, 0.10), rgba(255, 169, 40, 0.04));
  border-color: rgba(255, 204, 77, 0.35);
}
.feat-card.is-hot::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 204, 77, 0.4), transparent 50%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
  pointer-events: none;
}
.feat-flame {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 22px;
  transform-origin: center;
  animation: flame-pulse 1.5s ease-in-out infinite;
}
.feat-thumb {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #e8e8f0 100%);
  display: grid;
  place-items: center;
  padding: 10px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.6);
}
.feat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feat-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.feat-card.is-hot h3 {
  background: linear-gradient(180deg, #fff, #ffd87a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feat-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.feat-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}
.feat-list li .ico {
  font-size: 16px;
  line-height: 1.2;
  flex-shrink: 0;
}
.feat-card .btn { margin-top: auto; }

@media (max-width: 900px) {
  .featured-cards { grid-template-columns: 1fr; }
}

/* Review banner image */
.review-banner {
  margin: 6px 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  position: relative;
  aspect-ratio: 1024 / 380;
}
.review-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.review-banner:hover img { transform: scale(1.03); }
.review-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,20,0.45));
  pointer-events: none;
}

/* Highlighted callout boxes */
.callout {
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255,204,77,0.05), rgba(255,204,77,0.02));
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 22px 0;
  position: relative;
}
.callout.is-warning {
  background: linear-gradient(180deg, rgba(255, 90, 120, 0.06), rgba(255, 90, 120, 0.02));
  border-color: rgba(255, 90, 120, 0.25);
}
.callout h4,
.callout h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--text); font-weight: 700; padding-bottom: 0; }
.callout h3::after { display: none; }

/* ====================== REVIEW PAGE ELEMENTS ====================== */

/* Badge row in hero */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 8px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Welcome bonus card */
.welcome-card {
  background: linear-gradient(180deg, rgba(255, 204, 77, 0.12), rgba(255, 169, 40, 0.04));
  border: 1px solid rgba(255, 204, 77, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  margin: 30px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.welcome-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 204, 77, 0.3), transparent 50%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}
.welcome-card .eyebrow-label {
  display: inline-block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.welcome-card h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin: 0 0 10px;
  padding-bottom: 0;
  font-weight: 800;
  background: linear-gradient(180deg, #fff, #ffd87a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.welcome-card h2::after { display: none; }
.welcome-card .terms {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 12px auto 22px;
  max-width: 640px;
}
.welcome-card .btn { font-size: 16.5px; padding: 14px 28px; }

/* Score dashboard */
.score-dashboard {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin: 18px 0 38px;
}
.score-overall {
  text-align: center;
  padding: 18px 14px;
  background: rgba(255, 204, 77, 0.08);
  border-radius: var(--radius);
}
.score-overall .num {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.score-overall .max { color: var(--text-dim); font-size: 14px; margin-top: 6px; }
.score-overall .stars { color: var(--gold); margin-top: 8px; letter-spacing: 2px; }
.score-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.score-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.score-item .label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.score-item .bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin: 2px 0;
}
.score-item .bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  border-radius: 999px;
}
.score-item .val { font-size: 14.5px; font-weight: 700; color: var(--text); }

@media (max-width: 720px) {
  .score-dashboard { grid-template-columns: 1fr; }
  .score-overall { padding: 14px; }
  .score-overall .num { font-size: 2.4rem; }
}

/* Pros / Cons grid */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 20px 0 30px;
}
.pros-cons > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.pros-cons .pros { border-color: rgba(56, 211, 159, 0.25); background: linear-gradient(180deg, rgba(56, 211, 159, 0.05), rgba(56, 211, 159, 0.01)); }
.pros-cons .cons { border-color: rgba(255, 90, 120, 0.25); background: linear-gradient(180deg, rgba(255, 90, 120, 0.05), rgba(255, 90, 120, 0.01)); }
.pros-cons h3 { margin: 0 0 12px; font-size: 1.05rem; padding-bottom: 0; }
.pros-cons h3::after { display: none; }
.pros-cons ul { list-style: none; padding: 0; margin: 0; }
.pros-cons li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.pros-cons li:last-child { border-bottom: none; }
.pros-cons .pros li::before { content: "✓"; color: var(--success); font-weight: 800; flex-shrink: 0; }
.pros-cons .cons li::before { content: "—"; color: var(--danger); font-weight: 800; flex-shrink: 0; }

@media (max-width: 720px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* Step / numbered boxes */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0 32px;
}
.step-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  position: relative;
}
.step-box .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1208;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}
.step-box h3 { font-size: 1rem; margin: 0 0 8px; padding-bottom: 0; }
.step-box h3::after { display: none; }
.step-box p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Feature mini-cards (e.g., 4-column highlight cards) */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 20px 0 30px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.feature-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.feature-card .ico { font-size: 24px; margin-bottom: 10px; display: block; }
.feature-card h3 { font-size: 1rem; margin: 0 0 6px; padding-bottom: 0; }
.feature-card h3::after { display: none; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ====================== CONTACT FORM ====================== */
.contact-form {
  max-width: 720px;
  margin: 16px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-row { display: flex; flex-direction: column; gap: 6px; }
.contact-form .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-hover);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-check label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.contact-form .form-check input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--gold);
}
.contact-form button[type="submit"] { align-self: flex-start; }
@media (max-width: 600px) {
  .contact-form .form-grid-2 { grid-template-columns: 1fr; }
}

/* ====================== FOOTER ====================== */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-grid h4,
.footer-grid h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 14px; font-weight: 700; padding-bottom: 0; }
.footer-grid h3::after { display: none; }
.footer-grid p, .footer-grid li { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.footer-grid ul { list-style: none; }
.footer-grid a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}
.responsible-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ====================== ANIMATIONS ====================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(56, 211, 159, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(56, 211, 159, 0.05); }
}
@keyframes flame-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(30px) translateX(20px); }
}
@keyframes floatA {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(140px, 80px) scale(1.08); }
  50%  { transform: translate(220px, 180px) scale(1.12); }
  75%  { transform: translate(90px, 220px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes floatB {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-120px, 100px) scale(1.1); }
  50%  { transform: translate(-220px, 200px) scale(1.15); }
  75%  { transform: translate(-80px, 260px) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Reveal-on-scroll utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Hero lead "read more" toggle — keeps the casino list higher above the fold */
.lead-clamp:not(.is-expanded) {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--gold);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.read-more-btn::after {
  content: "\25BE";
  font-size: 0.8em;
  transition: transform 0.2s ease;
}
.read-more-btn.is-open::after { transform: rotate(180deg); }
.read-more-btn:hover { text-decoration: underline; }

/* ======================================================
   CasinoNews.ai — extensions (casino.guru-style components)
   Appended on top of the forked CasinoClaude system.
   ====================================================== */

/* ---- Score badge (casino.guru-style rating circle) ---- */
.score-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1208;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 6px 20px var(--gold-glow);
}
.score-badge .num { font-size: 1.25rem; line-height: 1; }
.score-badge .max { font-size: 10px; opacity: 0.7; margin-top: 2px; }
.score-badge.sm { width: 44px; height: 44px; border-radius: 11px; }
.score-badge.sm .num { font-size: 1rem; }
.score-badge.mid { background: linear-gradient(135deg, #7b5cff, #4dd3ff); color: #fff; }
.score-badge.low { background: linear-gradient(135deg, #5a5a6e, #3a3a48); color: #fff; }

/* ---- Filter / sort toolbar with chips ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 24px 0;
}
.filter-bar .label { font-size: 13px; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.chip {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.chip:hover { color: var(--text); background: var(--surface-hover); }
.chip.active { background: rgba(255,204,77,0.12); color: var(--gold); border-color: rgba(255,204,77,0.4); }

/* ---- Section cards grid (used for category hubs / news / guides) ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin: 28px 0;
}
.info-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); border-color: var(--border-strong); background: var(--surface-hover); }
.info-card .thumb { aspect-ratio: 16/9; background: var(--bg-2); overflow: hidden; }
.info-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.info-card:hover .thumb img { transform: scale(1.05); }
.info-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.info-card .tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(255,204,77,0.1);
  padding: 4px 10px; border-radius: 999px;
}
.info-card h3 { font-size: 1.12rem; font-weight: 700; line-height: 1.3; color: var(--text); }
.info-card p { font-size: 14px; color: var(--text-muted); margin: 0; }
.info-card .meta { margin-top: auto; font-size: 12.5px; color: var(--text-dim); display: flex; gap: 12px; flex-wrap: wrap; }
.info-card .card-cta { color: var(--gold); font-weight: 600; font-size: 13.5px; display: inline-flex; gap: 6px; align-items: center; transition: gap 0.25s ease; }
.info-card:hover .card-cta { gap: 10px; }

/* ---- Quick-facts grid (casino review info box) ---- */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
}
.facts-grid .fact { background: var(--bg-1); padding: 16px 18px; }
.facts-grid .fact .k { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); margin-bottom: 5px; }
.facts-grid .fact .v { font-size: 14.5px; color: var(--text); font-weight: 600; }

/* ---- Demo game embed (free-to-play) ---- */
.game-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  max-height: 640px;
  background: #000;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 22px 0;
}
.game-stage iframe { width: 100%; height: 100%; border: 0; display: block; }
.game-stage .play-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: radial-gradient(circle at 50% 40%, rgba(123,92,255,0.25), rgba(0,0,0,0.85));
  cursor: pointer;
  text-align: center;
  padding: 24px;
}
.game-stage .play-overlay .play-btn {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: grid; place-items: center;
  color: #1a1208; font-size: 30px;
  box-shadow: 0 10px 36px var(--gold-glow);
  transition: transform 0.25s ease;
}
.game-stage .play-overlay:hover .play-btn { transform: scale(1.08); }
.game-stage .play-overlay .hint { color: var(--text-muted); font-size: 14px; max-width: 360px; }
.game-meta-bar {
  display: flex; flex-wrap: wrap; gap: 18px;
  padding: 14px 18px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 8px; font-size: 13.5px; color: var(--text-muted);
}
.game-meta-bar b { color: var(--text); }
.demo-disclaimer { font-size: 12.5px; color: var(--text-dim); margin: 8px 0 24px; }

/* ---- Article / guide body typography ---- */
.article { max-width: 760px; margin: 0 auto; }
.article p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.02rem; }
.article h2 { font-size: 1.6rem; font-weight: 800; margin: 36px 0 14px; color: var(--text); letter-spacing: -0.02em; }
.article h3 { font-size: 1.25rem; font-weight: 700; margin: 26px 0 10px; color: var(--text); }
.article ul, .article ol { margin: 0 0 18px 22px; color: var(--text-muted); }
.article li { margin-bottom: 8px; }
.article li::marker { color: var(--gold); }
.article a { color: var(--gold); border-bottom: 1px solid rgba(255,204,77,0.3); }
.article a:hover { border-bottom-color: var(--gold); }
.article blockquote {
  border-left: 3px solid var(--gold); padding: 6px 20px; margin: 22px 0;
  color: var(--text); background: var(--surface); border-radius: 0 8px 8px 0; font-style: italic;
}
.article img { border-radius: var(--radius); margin: 22px 0; }
.byline { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 13.5px; margin: 18px 0 30px; flex-wrap: wrap; }
.byline .author { color: var(--text-muted); font-weight: 600; }
.byline .sep { opacity: 0.4; }

/* ---- Author / editorial trust note ---- */
.editorial-note {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; margin: 28px 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13.5px; color: var(--text-muted);
}
.editorial-note .ico { color: var(--gold); font-size: 18px; flex-shrink: 0; }

/* ---- FAQ accordion ---- */
.faq { margin: 24px 0; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; background: var(--surface); overflow: hidden;
}
.faq summary {
  padding: 16px 20px; cursor: pointer; font-weight: 600; color: var(--text);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 22px; font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div, .faq details > p { margin: 0; padding: 6px 22px 20px; color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }

/* ---- Tools / calculator ---- */
.tool-card {
  max-width: 560px; margin: 30px auto;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 30px;
}
.tool-card .field { margin-bottom: 18px; }
.tool-card label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; }
.tool-card input, .tool-card select {
  width: 100%; padding: 12px 14px; font-size: 15px; font-family: inherit;
  background: var(--bg-1); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  color: var(--text); transition: border-color 0.2s ease;
}
.tool-card input:focus, .tool-card select:focus { outline: none; border-color: var(--gold); }
.tool-result {
  margin-top: 24px; padding: 22px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,204,77,0.08), rgba(123,92,255,0.06));
  border: 1px solid var(--border-strong); text-align: center;
}
.tool-result .big { font-size: 2rem; font-weight: 900; color: var(--gold); }
.tool-result .lbl { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.tool-result .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.tool-result .row:last-child { border-bottom: none; }
.tool-result .row span:last-child { color: var(--text); font-weight: 600; }

/* ---- Section heading with eyebrow ---- */
.section { padding: 20px 0; }
.section-head { margin: 10px 0 8px; }
.section-head .eyebrow-sm { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin: 6px 0; }
.section-head p { color: var(--text-muted); max-width: 720px; }


/* ======================================================
   CasinoNews.ai — casino.guru STYLE (dark navy + green)
   Theme fixes + two-row header, icon nav, category tiles,
   horizontal game rails with ranked cards.
   ====================================================== */

/* ---- base theme fixes for navy palette ---- */
body { background: var(--bg-0);
  background-image:
    radial-gradient(900px 460px at 100% -80px, rgba(155,108,255,0.10), transparent 60%),
    radial-gradient(760px 380px at 0% -60px, rgba(108,194,74,0.07), transparent 60%);
  background-attachment: scroll; }
.site-footer { background: var(--bg-1); border-top: 1px solid var(--border); }
.table-wrap { background: var(--surface); }
table thead { background: rgba(108,194,74,0.10); }
table th { color: var(--gold); }
table tbody tr:hover { background: var(--bg-2); }
.score-badge .num, .score-badge .max { color: #06210a; }

/* ---- two-row header (search row + icon nav row) ---- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(21,32,43,0.97);
  border-bottom: 1px solid var(--border); backdrop-filter: none; -webkit-backdrop-filter: none; }
.header-top { border-bottom: 1px solid var(--border); }
.header-top-inner { display: flex; align-items: center; gap: 18px; padding: 12px 0; }
.header-top .logo img { height: 42px; }
.site-search { flex: 1; max-width: 660px; display: flex; align-items: center; gap: 9px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px; padding: 0 13px; height: 42px; }
.site-search:focus-within { border-color: var(--gold); }
.site-search i { color: var(--text-dim); font-size: 18px; }
.site-search input { flex: 1; background: none; border: none; outline: none; color: var(--text);
  font-family: inherit; font-size: 14.5px; }
.site-search input::placeholder { color: var(--text-dim); }
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }

/* icon nav row */
/* nav now lives inline in .header-top-inner (single-row header); the old second row is empty */
.nav-row { display: none !important; }
.header-top-inner .nav { flex: 0 1 auto; }
.nav-row .container { display: flex; align-items: stretch; justify-content: flex-start; }
.nav { display: flex; gap: 2px; align-items: stretch; }
.nav .has-dropdown { display: flex; }
.nav .nav-item, .nav .dropdown-trigger {
  display: inline-flex; align-items: center; gap: 7px; padding: 12px 14px; font-size: 13.8px;
  font-weight: 600; color: var(--text-muted); background: none; border: none; border-radius: 0;
  border-bottom: 3px solid transparent; cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: color .18s ease, border-color .18s ease, background .18s ease; }
.nav .dropdown-trigger::after { margin-top: 1px; }
.nav .nav-item:hover, .nav .dropdown-trigger:hover,
.nav .has-dropdown:hover .dropdown-trigger { color: #fff; background: rgba(255,255,255,0.04); }
.nav .nav-item.active { color: #fff; border-bottom-color: var(--gold); }
.nav .nav-ico { color: var(--gold); font-size: 16px; }
.nav .lang-pill { border-color: var(--border-strong); }

/* dropdown: dark panel + hover bridge (fixes the gap bug) */
.nav .dropdown-menu { top: 100%; margin-top: 0; background: #1b2733; border: 1px solid var(--border-strong);
  border-radius: 0 0 10px 10px; box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav .has-dropdown .dropdown-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -8px; height: 8px; }
.nav .dropdown-menu a { color: var(--text-muted); }
.nav .dropdown-menu a:hover { color: #fff; background: var(--surface-hover); }
.nav .dropdown-menu a.active { color: var(--gold); background: rgba(108,194,74,0.10); }

@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; padding: 8px; background: rgba(21,32,43,0.99); border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .nav .nav-item, .nav .dropdown-trigger { width: 100%; border-bottom: none; border-radius: 8px; }
  .nav-row .menu-toggle { display: inline-flex; margin: 0; }
  .site-search { max-width: none; }
}
@media (min-width: 981px) { .nav-row .menu-toggle { display: none; } }

/* ---- category tile strip (with counts) ---- */
.cat-strip { display: flex; gap: 12px; overflow-x: auto; padding: 6px 2px 14px; scroll-snap-type: x proximity; }
.cat-strip::-webkit-scrollbar { height: 8px; }
.cat-strip::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }
.cat-tile { position: relative; flex: 0 0 auto; width: 118px; min-height: 96px; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px 10px;
  color: var(--text-muted); text-align: center; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.cat-tile:hover { border-color: var(--gold); background: var(--surface-hover); transform: translateY(-3px); color: var(--text); }
.cat-tile .ico { font-size: 26px; color: var(--gold); line-height: 1; }
.cat-tile .cat-name { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.cat-tile .cat-count { position: absolute; top: 8px; right: 10px; font-size: 12px; font-weight: 700; color: var(--text-dim); }

/* ---- horizontal game rail (carousel) ---- */
.rail { margin: 12px 0 30px; }
.rail-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.rail-head h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.rail-head h2 .ico { color: var(--gold); }
.rail-controls { display: flex; align-items: center; gap: 8px; }
.rail-controls .show-all { font-size: 13px; font-weight: 600; color: var(--text-muted); border: 1px solid var(--border-strong);
  padding: 7px 14px; border-radius: 8px; background: none; cursor: pointer; }
.rail-controls .show-all:hover { color: #fff; border-color: var(--gold); }
.rail-controls .arrow { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); cursor: pointer; display: grid; place-items: center; font-size: 16px; }
.rail-controls .arrow:hover { border-color: var(--gold); color: var(--gold); }
.rail-track { display: flex; gap: 16px; overflow-x: auto; padding: 4px 2px 12px; scroll-snap-type: x proximity; scroll-behavior: smooth; }
.rail-track::-webkit-scrollbar { height: 8px; }
.rail-track::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }

.game-card { flex: 0 0 auto; width: 168px; scroll-snap-align: start; }
.game-card .art { position: relative; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3)); border: 1px solid var(--border); display: grid; place-items: center; }
.game-card .art img { width: 100%; height: 100%; object-fit: cover; }
.game-card .art .ph { font-size: 30px; color: var(--text-dim); }
.game-card:hover .art { border-color: var(--gold); }
.game-card .rank { position: absolute; left: -6px; bottom: -10px; font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800; color: var(--gold); text-shadow: 0 2px 10px rgba(0,0,0,.6); line-height: 1; }
.game-card .g-title { margin-top: 10px; font-size: 13.5px; font-weight: 600; color: var(--text); }
.game-card .g-prov { font-size: 12px; color: var(--text-dim); }
.game-card .g-play { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity .2s ease;
  background: rgba(0,0,0,.35); }
.game-card:hover .g-play { opacity: 1; }
.game-card .g-play span { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #06210a;
  display: grid; place-items: center; font-size: 20px; }

/* alternating section bands like casino.guru */
.band { background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---- casino screenshot slot (auto-shows when image file exists) ---- */
.shot { margin: 20px 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
.shot img { width: 100%; height: auto; display: block; }
.shot figcaption { padding: 8px 13px; font-size: 12px; color: var(--text-dim); border-top: 1px solid var(--border); }
.shot.empty { aspect-ratio: 16/7; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--text-dim); }
.shot.empty img, .shot.empty figcaption { display: none; }
.shot.empty::before { font-family: "tabler-icons"; content: "\ea69"; font-size: 32px; }
.shot.empty::after { content: "Screenshot — drop the image into assets/images/casinos/ to show it here"; font-size: 13px; text-align: center; padding: 0 20px; }

/* ---- Country mega-menu ---- */
.nav-row .container { position: relative; }
.nav .has-mega { position: static; }
.nav .mega-menu {
  left: 0; right: 0; top: 100%;
  width: auto; min-width: 0; max-width: var(--max-w);
  margin: 0 auto; padding: 20px 22px;
  border-radius: 0 0 12px 12px;
  column-count: 4; column-gap: 26px;
}
.nav .mega-menu .mega-col { break-inside: avoid; display: inline-block; width: 100%; margin-bottom: 16px; }
.nav .mega-menu .mega-head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--text); font-size: 13.5px;
  padding: 6px 8px; margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.nav .mega-menu a { display: block; padding: 5px 8px; border-radius: 6px; font-size: 12.8px; color: var(--text-muted); white-space: normal; }
.nav .mega-menu a:hover { background: var(--surface-hover); color: var(--text); }
.nav .mega-menu .more { color: var(--gold); font-weight: 600; }
@media (max-width: 980px) {
  .nav .mega-menu { position: static; column-count: 1; padding: 6px 8px; box-shadow: none; border: none; }
  .nav .mega-menu .mega-col { margin-bottom: 8px; }
}

/* ---- Country flyout submenus (compact) ---- */
.nav .flyout-item { position: relative; }
.nav .flyout-item > a { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.nav .flyout-item > a .caret { color: var(--text-dim); font-size: 15px; }
.nav .flyout {
  position: absolute; left: 100%; top: -9px; min-width: 236px;
  margin-left: 6px;
  display: none; flex-direction: column; gap: 2px;
  background: #1b2733; border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 8px; box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.nav .flyout-item > .flyout::before { content: ""; position: absolute; left: -10px; top: 0; bottom: 0; width: 12px; }
@media (hover: hover) and (pointer: fine) { .nav .flyout-item:hover > .flyout { display: flex; } }
.nav .flyout a { padding: 8px 12px; border-radius: 8px; font-size: 13.3px; color: var(--text-muted); white-space: nowrap; }
.nav .flyout a:hover { color: #fff; background: var(--surface-hover); }
.nav .flyout .more { color: var(--gold); font-weight: 600; }
@media (max-width: 980px) {
  .nav .flyout { display: none !important; }
}

/* ======================================================
   CasinoNews.ai — MOBILE NAV (authoritative, ≤980px)
   Overrides legacy + earlier mobile rules.
   ====================================================== */
@media (max-width: 980px) {
  .site-header { position: sticky; top: 0; }

  /* top row: logo left, EN + hamburger right, search wraps to full width */
  .header-top { border-bottom: 1px solid var(--border); }
  .header-top-inner { flex-wrap: wrap; gap: 10px 12px; padding: 11px 0; position: relative; }
  .header-top .logo { flex: 0 0 auto; }
  .header-top .logo img { height: 38px; }
  .header-right { margin-left: auto; margin-right: 0; }
  .site-search { order: 5; flex: 1 0 100%; max-width: none; height: 40px; }

  /* hamburger now lives in .header-right next to the EN pill (see rule below) */
  .menu-toggle { display: inline-flex !important; align-items: center; justify-content: center;
    position: static; margin: 0; }

  /* collapse the empty nav-row bar */
  .nav-row { border-top: none; }
  .nav-row .container { display: block; padding-top: 0; padding-bottom: 0; position: static; }

  /* slide-down nav panel */
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #15202b; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 8px; max-height: 80vh; overflow-y: auto;
    box-shadow: 0 22px 44px rgba(0,0,0,.5); z-index: 200;
  }
  .nav.open { display: flex; }

  .nav .nav-item, .nav > a, .nav .dropdown-trigger {
    width: 100%; justify-content: flex-start; gap: 10px;
    padding: 13px 14px; border: none; border-bottom: none; border-radius: 10px;
    font-size: 15px; color: var(--text);
  }
  .nav .nav-item:hover, .nav > a:hover, .nav .dropdown-trigger:hover { background: var(--surface-hover); }
  .nav .dropdown-trigger { position: relative; }
  .nav .dropdown-trigger::after { content: "▾"; margin-left: auto; transition: transform .2s ease; }
  .nav .has-dropdown.open > .dropdown-trigger::after { transform: rotate(180deg); }

  /* nested lists expand inline */
  .nav .dropdown-menu {
    position: static; display: none; min-width: 0; width: 100%;
    background: transparent; border: none; box-shadow: none; border-radius: 0;
    padding: 2px 0 8px 14px; margin: 0; column-count: 1;
  }
  .nav .has-dropdown.open > .dropdown-menu { display: flex; flex-direction: column; }
  .nav .dropdown-menu::before { display: none; }
  .nav .dropdown-menu a { padding: 10px 12px; font-size: 14px; white-space: normal; }

  /* country: accordion — tap chevron to expand a market's pages; name links to hub */
  .nav .flyout-item { width: 100%; }
  .nav .flyout-item > a { width: 100%; padding: 13px 14px; border-radius: 10px; }
  .nav .flyout-item > a:hover { background: var(--surface-hover); }
  .nav .flyout-item > a .caret {
    display: inline-flex; align-items: center; justify-content: center;
    margin: -8px -8px -8px auto; width: 40px; height: 44px;
    font-size: 20px; color: var(--text-muted); transition: transform .2s ease;
  }
  .nav .flyout-item.open > a .caret { transform: rotate(90deg); }
  .nav .flyout { display: none !important; }
  .nav .flyout-item.open .flyout {
    display: flex !important; flex-direction: column; position: static;
    background: transparent; border: none; border-left: 2px solid var(--border-strong);
    box-shadow: none; border-radius: 0; padding: 2px 0 6px 12px; margin: 2px 0 8px 14px; min-width: 0;
  }
  .nav .flyout-item.open .flyout a { white-space: normal; padding: 9px 12px; }
}
@media (min-width: 981px) { .menu-toggle { display: none; } }

/* ======================================================
   MOBILE NAV — force all submenus to stack inline (not to the side)
   Final authoritative override (≤980px).
   ====================================================== */
@media (max-width: 980px) {
  .nav .dropdown-menu {
    position: static !important; inset: auto !important; left: auto !important; right: auto !important; top: auto !important;
    width: 100% !important; min-width: 0 !important; max-width: none !important; transform: none !important;
    column-count: 1 !important; background: transparent !important; border: none !important;
    box-shadow: none !important; border-radius: 0 !important; margin: 0 !important; padding: 2px 0 8px 14px !important;
  }
  .nav .has-dropdown.open > .dropdown-menu { display: flex !important; flex-direction: column !important; }
  .nav .dropdown-menu::before { display: none !important; }

  .nav .flyout {
    position: static !important; inset: auto !important; left: auto !important; right: auto !important; top: auto !important;
    width: 100% !important; min-width: 0 !important; transform: none !important; display: none !important;
    background: transparent !important; border: none !important; box-shadow: none !important;
    border-left: 2px solid var(--border-strong) !important; border-radius: 0 !important;
    margin: 2px 0 8px 14px !important; padding: 2px 0 6px 12px !important;
  }
  .nav .flyout-item.open > .flyout { display: flex !important; flex-direction: column !important; }
  .nav .flyout a { white-space: normal !important; }
}

/* MOBILE FIX: dropdown containers must stack (they were display:flex row on desktop) */
@media (max-width: 980px) {
  .nav .has-dropdown { display: block !important; position: static !important; width: 100%; }
  .nav .flyout-item { display: block !important; position: static !important; width: 100%; }
}

/* brand logo image sizing */
.logo img { height: 40px; width: auto; max-width: 300px; }
.header-top .logo img { height: 40px; }
.site-footer .logo img { height: 38px; }
@media (max-width: 980px) { .header-top .logo img { height: 34px; } }

/* ---- persistent ambient background across the whole page (fixed layer) ---- */
body { background: var(--bg-0) !important; position: relative; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(48% 48% at 0% 18%, rgba(91,140,255,0.18), transparent 60%),
    radial-gradient(50% 50% at 100% 58%, rgba(108,194,74,0.16), transparent 60%),
    radial-gradient(60% 45% at 50% 112%, rgba(138,108,255,0.10), transparent 60%);
}

/* remove the clipped hero "blob" glows so the page-wide ambient background is seamless */
.blob { display: none !important; }
.hero, .page-hero { overflow: visible; }

/* ======================================================
   Casino list — modern restyle + consistent logo tiles
   ====================================================== */
.casino-list { gap: 14px; }
.casino-card {
  grid-template-columns: 172px 1.5fr 1.05fr auto;
  gap: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.casino-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108,194,74,0.45);
  box-shadow: 0 16px 38px rgba(0,0,0,0.38);
}
.casino-card::after { width: 3px; background: var(--gold); }

/* logo tile — uniform white panel so every brand logo fits cleanly */
.casino-thumb {
  width: 172px; height: 100px; aspect-ratio: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: inset 0 0 24px rgba(0,0,0,0.06);
}
.casino-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* rank badge — rounded square, brand green */
.rank-badge {
  top: 12px; left: 12px; width: 26px; height: 26px;
  border-radius: 8px; font-size: 12.5px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #06210a;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.casino-info h3 { font-family: var(--font-display); font-size: 1.16rem; letter-spacing: -0.01em; }
.rating { background: rgba(108,194,74,0.14); color: var(--gold); border: 1px solid rgba(108,194,74,0.25); }
.casino-features { font-size: 13.5px; }

.casino-cta { gap: 9px; min-width: 168px; }
.casino-cta .btn-primary {
  width: 100%; padding: 13px 22px; font-size: 15px; border-radius: 10px;
  box-shadow: 0 6px 18px rgba(108,194,74,0.22);
}
.casino-cta .btn-primary:hover { box-shadow: 0 10px 24px rgba(108,194,74,0.32); }

/* responsive: stack neatly on tablet/mobile */
@media (max-width: 860px) {
  .casino-card { grid-template-columns: 92px 1fr; grid-auto-rows: auto; row-gap: 14px; padding: 16px; }
  .casino-thumb { width: 92px; height: 64px; padding: 8px; }
  .casino-info { grid-column: 2; }
  .casino-bonus { grid-column: 1 / -1; }
  .casino-cta { grid-column: 1 / -1; min-width: 0; }
  .casino-cta .btn-primary { width: 100%; }
}

/* ======================================================
   Casino list v2 — cooler, premium, on-brand
   ====================================================== */
.casino-card {
  background:
    radial-gradient(130% 130% at 0% 0%, rgba(108,194,74,0.07), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 24px;
}
.casino-card::after { opacity: 1; width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--accent)); }
.casino-card:hover {
  border-color: rgba(108,194,74,0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.42), 0 0 0 1px rgba(108,194,74,0.12);
}

/* logo chip — premium light medallion */
.casino-thumb {
  width: 168px; height: 104px;
  background: linear-gradient(180deg, #ffffff, #eef1f6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: box-shadow .25s ease, transform .25s ease;
}
.casino-card:hover .casino-thumb {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.45), 0 0 0 2px rgba(108,194,74,0.35);
}

/* rank — bigger green medallion (like a score ring) */
.rank-badge {
  top: 14px; left: 14px; width: 30px; height: 30px; border-radius: 50%;
  font-size: 13px; font-weight: 800;
  background: linear-gradient(135deg, #7ed957, var(--gold-2)); color: #052b0e;
  box-shadow: 0 4px 14px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}

/* score chip — solid green, prominent */
.rating {
  background: linear-gradient(135deg, #7ed957, var(--gold-2));
  color: #052b0e; border: none; font-weight: 800; font-size: 13px; padding: 5px 13px;
  box-shadow: 0 4px 12px var(--gold-glow);
}

/* bonus — highlighted panel with green emphasis */
.casino-bonus {
  background: rgba(108,194,74,0.06);
  border: 1px solid rgba(108,194,74,0.20);
  border-radius: 12px;
  padding: 12px 15px;
}
.bonus-label { color: var(--gold); opacity: .85; }
.bonus-amount { color: #c8f0b4; font-size: 1.08rem; font-weight: 800; }

/* play button — glossy green */
.casino-cta { gap: 9px; min-width: 168px; }
.casino-cta .btn-primary {
  width: 100%; padding: 14px 22px; font-size: 15px; border-radius: 11px;
  background: linear-gradient(135deg, #84e05c, var(--gold-2));
  color: #052b0e;
  box-shadow: 0 8px 22px rgba(108,194,74,0.32), inset 0 1px 0 rgba(255,255,255,0.35);
}
.casino-cta .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(108,194,74,0.45), inset 0 1px 0 rgba(255,255,255,0.35); }

@media (max-width: 860px) {
  .casino-thumb { width: 96px; height: 66px; padding: 9px; }
}

/* ======================================================
   Casino list v3 — full-bleed logos + flashier colours
   ====================================================== */
/* logo fills the tile edge-to-edge (no white frame) */
.casino-thumb {
  width: 178px; height: 110px; padding: 0;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
}
.casino-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.casino-card:hover .casino-thumb {
  box-shadow: 0 10px 26px rgba(0,0,0,0.5), 0 0 0 2px rgba(108,194,74,0.55), 0 0 22px rgba(108,194,74,0.35);
}

/* flashier card: green + blue ambient corners, glowing accent */
.casino-card {
  background:
    radial-gradient(130% 130% at 0% 0%, rgba(108,194,74,0.12), transparent 46%),
    radial-gradient(130% 130% at 100% 100%, rgba(91,140,255,0.10), transparent 48%),
    var(--bg-1);
  border: 1px solid rgba(108,194,74,0.18);
  border-radius: 18px;
}
.casino-card::after {
  opacity: 1; width: 4px;
  background: linear-gradient(180deg, #9bf06a, #19c37d);
  box-shadow: 0 0 16px rgba(108,194,74,0.7);
}
.casino-card:hover {
  border-color: rgba(108,194,74,0.6);
  box-shadow: 0 20px 46px rgba(0,0,0,0.5), 0 0 26px rgba(108,194,74,0.20);
}

/* neon score + rank */
.rank-badge {
  background: linear-gradient(135deg, #9bf06a, #19c37d); color: #04200d;
  box-shadow: 0 0 14px rgba(108,194,74,0.7), inset 0 1px 0 rgba(255,255,255,0.4);
}
.rating {
  background: linear-gradient(135deg, #9bf06a, #19c37d); color: #04200d;
  box-shadow: 0 0 14px rgba(108,194,74,0.45); font-weight: 800;
}

/* bonus panel — brighter */
.casino-bonus { background: rgba(108,194,74,0.10); border: 1px solid rgba(108,194,74,0.30); }
.bonus-amount { color: #b6f59c; }

/* play button — neon glow */
.casino-cta .btn-primary {
  background: linear-gradient(135deg, #9bf06a, #19c37d);
  color: #04200d; font-weight: 800;
  box-shadow: 0 0 22px rgba(108,194,74,0.5), 0 8px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4);
}
.casino-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(108,194,74,0.7), 0 12px 26px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}

@media (max-width: 860px) { .casino-thumb { width: 100px; height: 70px; } }

/* ======================================================
   Casino logo tile — blurred backdrop fill + full logo
   (fills the whole tile AND shows the complete logo)
   ====================================================== */
.casino-thumb { position: relative; overflow: hidden; background: var(--bg-2); padding: 0; }
.casino-thumb::before {
  content: ""; position: absolute; inset: -12%;
  background: var(--logo-bg) center / cover no-repeat;
  filter: blur(16px) brightness(0.62) saturate(1.35);
  transform: scale(1.18); z-index: 0;
}
.casino-thumb::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 120% at 50% 50%, transparent 40%, rgba(10,16,26,0.42));
}
.casino-thumb img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: contain;
  padding: 14px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.55));
}

/* ======================================================
   Top-3 podium treatment in casino lists
   ====================================================== */
.casino-list .casino-card:nth-child(-n+3) { padding-top: 22px; }

/* #1 — gold + "Top rated" ribbon */
.casino-list .casino-card:nth-child(1) {
  border-color: rgba(255,196,0,0.55);
  box-shadow: 0 0 0 1px rgba(255,196,0,0.22), 0 20px 46px rgba(0,0,0,0.5), 0 0 30px rgba(255,179,0,0.18);
}
.casino-list .casino-card:nth-child(1)::after {
  background: linear-gradient(180deg, #ffe082, #ffb300); box-shadow: 0 0 18px rgba(255,179,0,0.8);
}
.casino-list .casino-card:nth-child(1) .rank-badge {
  background: linear-gradient(135deg, #ffe7a0, #ffb300); color: #3a2a00;
  box-shadow: 0 0 16px rgba(255,179,0,0.8), inset 0 1px 0 rgba(255,255,255,0.5);
}
.casino-list .casino-card:nth-child(1)::before {
  content: "★ TOP RATED";
  position: absolute; top: 0; right: 20px; transform: translateY(-50%);
  background: linear-gradient(135deg, #ffe082, #ffb300); color: #3a2a00;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 999px; z-index: 3;
  box-shadow: 0 4px 14px rgba(255,179,0,0.5);
}

/* #2 — silver */
.casino-list .casino-card:nth-child(2) {
  border-color: rgba(200,212,226,0.42);
  box-shadow: 0 0 0 1px rgba(200,212,226,0.16), 0 18px 42px rgba(0,0,0,0.46), 0 0 22px rgba(200,212,226,0.12);
}
.casino-list .casino-card:nth-child(2)::after { background: linear-gradient(180deg, #f2f6fb, #aab4c2); box-shadow: 0 0 14px rgba(200,212,226,0.6); }
.casino-list .casino-card:nth-child(2) .rank-badge { background: linear-gradient(135deg, #f2f6fb, #aab4c2); color: #2a3140; box-shadow: 0 0 12px rgba(200,212,226,0.6); }

/* #3 — bronze */
.casino-list .casino-card:nth-child(3) {
  border-color: rgba(214,141,79,0.45);
  box-shadow: 0 0 0 1px rgba(214,141,79,0.16), 0 18px 42px rgba(0,0,0,0.46), 0 0 22px rgba(214,141,79,0.14);
}
.casino-list .casino-card:nth-child(3)::after { background: linear-gradient(180deg, #f0b27a, #c87f3a); box-shadow: 0 0 14px rgba(214,141,79,0.6); }
.casino-list .casino-card:nth-child(3) .rank-badge { background: linear-gradient(135deg, #f6c79a, #c87f3a); color: #3a2410; box-shadow: 0 0 12px rgba(214,141,79,0.6); }

/* ======================================================
   Top-3 podium — stronger emphasis + visible ribbons
   ====================================================== */
/* allow ribbons/badges to sit above the card edge */
.casino-list .casino-card { overflow: visible; }
.casino-list .casino-card .casino-thumb { overflow: hidden; }
.casino-list { margin-top: 34px; }              /* room for the #1 ribbon */

/* shared ribbon */
.casino-list .casino-card:nth-child(-n+3)::before {
  position: absolute; top: -13px; right: 22px; z-index: 5;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.07em;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* #1 — gold, biggest emphasis */
.casino-list .casino-card:nth-child(1) {
  border: 2px solid rgba(255,196,0,0.7);
  background:
    radial-gradient(130% 130% at 0% 0%, rgba(255,196,0,0.12), transparent 46%),
    radial-gradient(130% 130% at 100% 100%, rgba(108,194,74,0.10), transparent 48%),
    var(--bg-1);
  box-shadow: 0 0 0 4px rgba(255,196,0,0.10), 0 22px 50px rgba(0,0,0,0.55), 0 0 42px rgba(255,179,0,0.28);
}
.casino-list .casino-card:nth-child(1)::before {
  content: "★ TOP RATED"; background: linear-gradient(135deg, #ffe082, #ffb300); color: #3a2a00;
}

/* #2 — silver */
.casino-list .casino-card:nth-child(2) { border: 2px solid rgba(200,212,226,0.6);
  box-shadow: 0 0 0 4px rgba(200,212,226,0.07), 0 20px 46px rgba(0,0,0,0.5), 0 0 30px rgba(200,212,226,0.16); }
.casino-list .casino-card:nth-child(2)::before {
  content: "RUNNER-UP"; background: linear-gradient(135deg, #f2f6fb, #aab4c2); color: #2a3140;
}

/* #3 — bronze */
.casino-list .casino-card:nth-child(3) { border: 2px solid rgba(214,141,79,0.6);
  box-shadow: 0 0 0 4px rgba(214,141,79,0.07), 0 20px 46px rgba(0,0,0,0.5), 0 0 30px rgba(214,141,79,0.18); }
.casino-list .casino-card:nth-child(3)::before {
  content: "GREAT VALUE"; background: linear-gradient(135deg, #f6c79a, #c87f3a); color: #3a2410;
}

/* drop the left accent bar (looked bad once cards overflow) + ribbons only on #1 */
.casino-card::after { display: none !important; }
.casino-list .casino-card:nth-child(2)::before,
.casino-list .casino-card:nth-child(3)::before { content: none !important; display: none !important; }

/* accent bar — neat inset tab that fits the rounded card */
.casino-card::after {
  display: block !important;
  content: ""; position: absolute;
  left: 1px; top: 18px; bottom: 18px; width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #9bf06a, #19c37d);
  box-shadow: 0 0 12px rgba(108,194,74,0.5);
  opacity: 1;
}
.casino-list .casino-card:nth-child(1)::after { background: linear-gradient(180deg,#ffe082,#ffb300); box-shadow: 0 0 12px rgba(255,179,0,0.6); }
.casino-list .casino-card:nth-child(2)::after { background: linear-gradient(180deg,#f2f6fb,#aab4c2); box-shadow: 0 0 12px rgba(200,212,226,0.5); }
.casino-list .casino-card:nth-child(3)::after { background: linear-gradient(180deg,#f6c79a,#c87f3a); box-shadow: 0 0 12px rgba(214,141,79,0.5); }

/* ======================================================
   Accent bar via INSET shadow (always hugs the card edge)
   ====================================================== */
.casino-card::after { display: none !important; }   /* kill the detached element */

.casino-card { box-shadow: inset 4px 0 0 #19c37d, 0 1px 3px rgba(0,0,0,0.3) !important; }
.casino-card:hover { box-shadow: inset 4px 0 0 #19c37d, 0 16px 38px rgba(0,0,0,0.45), 0 0 22px rgba(108,194,74,0.16) !important; }

.casino-list .casino-card:nth-child(1) {
  box-shadow: inset 4px 0 0 #ffb300, 0 0 0 4px rgba(255,196,0,0.10), 0 18px 44px rgba(0,0,0,0.5), 0 0 36px rgba(255,179,0,0.22) !important;
}
.casino-list .casino-card:nth-child(2) {
  box-shadow: inset 4px 0 0 #aab4c2, 0 0 0 4px rgba(200,212,226,0.07), 0 18px 44px rgba(0,0,0,0.48) !important;
}
.casino-list .casino-card:nth-child(3) {
  box-shadow: inset 4px 0 0 #c87f3a, 0 0 0 4px rgba(214,141,79,0.07), 0 18px 44px rgba(0,0,0,0.48) !important;
}


/* ======================================================
   CasinoNews.ai — "cooler" motion & features layer
   ====================================================== */
/* animated aurora: gently drift the ambient glow */
@keyframes auroraDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -1.5%, 0) scale(1.06); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
body::before { animation: auroraDrift 18s ease-in-out infinite; will-change: transform; }
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }

/* scroll progress bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  box-shadow: 0 0 10px rgba(108,194,74,0.6); z-index: 300; transition: width .08s linear;
}

/* header condenses on scroll */
.site-header { transition: box-shadow .25s ease, backdrop-filter .25s ease, background .25s ease; }
body.scrolled .site-header {
  background: rgba(15,23,34,0.92);
  backdrop-filter: saturate(150%) blur(12px); -webkit-backdrop-filter: saturate(150%) blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

/* glowing gradient on section headings */
.section-head h2, .rail-head h2 {
  background: linear-gradient(90deg, #eaf3ee, #cfeecf 60%, #9be08a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head .eyebrow-sm { text-shadow: 0 0 14px rgba(108,194,74,0.45); }

/* scroll-reveal (only active when JS adds .js-anim) */
.js-anim .reveal-on { opacity: 0; transform: translateY(18px); }
.js-anim .reveal-on.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }

/* sheen sweep on primary buttons */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); transition: none;
}
.btn-primary:hover::after { animation: sheen .8s ease; }
@keyframes sheen { from { left: -120%; } to { left: 140%; } }

/* floating back-to-top */
#to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 250;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: linear-gradient(135deg, #9bf06a, #19c37d); color: #04200d;
  border: none; font-size: 20px;
  box-shadow: 0 8px 22px rgba(108,194,74,0.45);
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
#to-top.show { opacity: 1; transform: none; pointer-events: auto; }
#to-top:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(108,194,74,0.6); }

/* live "pulse" dot already exists (.eyebrow .dot) — add a subtle glow ring to score badges on reveal */
.score-badge { transition: transform .3s ease, box-shadow .3s ease; }
.info-card:hover .score-badge, .casino-card:hover .score-badge { transform: scale(1.06); }

/* ======================================================
   Modern homepage — gradient hero, glass stats, bento
   ====================================================== */
.home-hero { position: relative; text-align: center; padding: 72px 0 26px; }
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.6vw, 4.3rem); line-height: 1.04; font-weight: 800; letter-spacing: -0.03em;
  margin: 16px auto 16px; max-width: 16ch;
  color: #f3f8f4; -webkit-text-fill-color: #f3f8f4; background: none;
}
.home-hero h1 .hl { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.home-hero .subtitle { color: var(--text-muted); max-width: 640px; margin: 0 auto 26px; font-size: 1.08rem; }
.home-hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.home-hero .btn { padding: 15px 30px; font-size: 16px; }

.glass {
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 16px;
}
.home-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 860px; margin: 40px auto 0; }
.home-stats .stat { padding: 20px 16px; text-align: center; }
.home-stats .stat .n {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #9bf06a, #19c37d);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.home-stats .stat .l { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }
@media (max-width: 720px) { .home-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---- hero glow-up ---- */
.home-hero { padding-top: 84px; isolation: isolate; }
.home-hero::before {
  content: ""; position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  width: 1100px; height: 560px; z-index: -2; pointer-events: none;
  background:
    radial-gradient(560px 300px at 50% 0%, rgba(108,194,74,0.20), transparent 70%),
    radial-gradient(720px 360px at 50% 12%, rgba(74,163,255,0.12), transparent 72%);
}
.home-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(closest-side at 50% 32%, #000 38%, transparent 80%);
  mask-image: radial-gradient(closest-side at 50% 32%, #000 38%, transparent 80%);
}
.home-hero h1 { filter: drop-shadow(0 6px 34px rgba(108,194,74,0.22)); }

.home-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(108,194,74,0.10);
  border: 1px solid rgba(108,194,74,0.32);
  color: #cfe8c2; font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 8px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

.home-stats .stat {
  position: relative; overflow: hidden; padding: 22px 16px 18px;
  transition: transform 0.32s cubic-bezier(.2,.7,.3,1), border-color 0.3s ease, background 0.3s ease;
}
.home-stats .stat::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 46%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45; transition: opacity 0.3s ease, width 0.3s ease;
}
.home-stats .stat:hover {
  transform: translateY(-5px);
  border-color: rgba(108,194,74,0.38);
  background: rgba(108,194,74,0.07);
}
.home-stats .stat:hover::before { opacity: 1; width: 70%; }
.home-stats .stat .si {
  display: block; font-size: 22px; line-height: 1; color: var(--gold);
  margin-bottom: 10px; opacity: 0.92;
}
.home-stats .stat .n { font-size: 2.15rem; }
/* bento explore grid */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 158px; gap: 16px; margin-top: 22px; }
.bento a {
  position: relative; overflow: hidden; border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--border); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.bento a .bi { position: absolute; top: 18px; right: 20px; font-size: 30px; color: var(--gold); z-index: 2; }
.bento a h3 { font-family: var(--font-display); font-size: 1.18rem; color: var(--text); margin: 0; }
.bento a p { color: var(--text-muted); font-size: 13.5px; margin: 0; }
.bento a .bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.42; z-index: 0;
  transition: transform .5s ease, opacity .3s ease;
}
.bento a::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(21,32,43,0.35) 0%, rgba(21,32,43,0.88) 100%);
}
.bento a:hover .bg { transform: scale(1.06); opacity: 0.58; }
.bento a h3, .bento a p { position: relative; z-index: 2; }
.bento a::after { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(130% 130% at 100% 0%, rgba(108,194,74,0.16), transparent 52%); opacity: 0; transition: opacity .3s ease; }
.bento a:hover { transform: translateY(-5px); border-color: rgba(108,194,74,0.5); box-shadow: 0 20px 44px rgba(0,0,0,0.42); }
.bento a:hover::after { opacity: 1; }
.bento .big { grid-column: span 2; grid-row: span 2; }
.bento .big h3 { font-size: 1.7rem; }
.bento .big .bi { font-size: 44px; }
@media (max-width: 860px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
  .bento .big { grid-column: span 1; }
}

/* ======================================================
   /casinos/ ranked list — rows with thumbnails (.crow)
   ====================================================== */
.crow-list { display: flex; flex-direction: column; gap: 12px; }
.crow {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 14px 20px; border-radius: 16px;
  background: var(--bg-1); border: 1px solid var(--border);
  box-shadow: inset 4px 0 0 #19c37d, 0 1px 3px rgba(0,0,0,0.3);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.crow:hover { transform: translateY(-2px); border-color: rgba(108,194,74,0.45);
  box-shadow: inset 4px 0 0 #19c37d, 0 14px 32px rgba(0,0,0,0.42); }
.crow-rank { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text-dim); min-width: 22px; text-align: center; }
.crow-thumb { width: 104px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border-strong); background: var(--bg-2); position: relative; }
.crow-thumb img { width: 100%; height: 100%; object-fit: cover; }
.crow-thumb.noimg { display: none; }
.crow:hover .crow-thumb { box-shadow: 0 0 0 2px rgba(108,194,74,0.45); }
.crow-info { flex: 1; min-width: 220px; }
.crow-info h3 { margin: 0 0 2px; font-size: 1.06rem; font-family: var(--font-display); }
.crow-info h3 a { color: var(--text); }
.crow-info .g-prov { font-size: 13.5px; }
.crow .btn { padding: 11px 18px; font-size: 14px; }
.crow-review { white-space: nowrap; }
/* podium accents */
.crow:nth-child(1) { box-shadow: inset 4px 0 0 #ffb300, 0 0 0 1px rgba(255,196,0,0.22), 0 14px 32px rgba(0,0,0,0.42); }
.crow:nth-child(2) { box-shadow: inset 4px 0 0 #c8d4e2, 0 0 0 1px rgba(200,212,226,0.18), 0 14px 32px rgba(0,0,0,0.42); }
.crow:nth-child(3) { box-shadow: inset 4px 0 0 #d68d4f, 0 0 0 1px rgba(214,141,79,0.2), 0 14px 32px rgba(0,0,0,0.42); }
@media (max-width: 760px) {
  .crow { gap: 10px 10px; align-items: center; padding: 14px 16px; }
  .crow-rank { order: 0; min-width: 16px; font-size: 1.1rem; }
  .crow-thumb { width: 60px; height: 42px; order: 0; }
  .crow .score-badge { order: 0; }
  .crow-info { flex: 1 1 40%; min-width: 0; order: 0; }
  .crow-info h3 { font-size: 1rem; }
  .crow-review, .crow .btn-primary { order: 5; flex: 1 1 calc(50% - 5px); display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; }
  .crow .btn { padding: 11px 8px; font-size: 13.5px; }
}

/* ====================================================== 
   hero animated icon field + header polish (v l)
   ====================================================== */
.hero-fx {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
  transform: translate(var(--px,0px), var(--py,0px)) rotate(var(--rot,0deg));
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.hero-fx i {
  position: absolute; left: var(--x); top: var(--y);
  font-size: calc(48px * var(--s,1)); color: var(--gold);
  opacity: .08; transform: translate(-50%,-50%);
  animation: heroFloat 7s ease-in-out infinite; animation-delay: var(--d,0s);
  transition: opacity .45s ease; will-change: transform;
}
.home-hero:hover .hero-fx i { opacity: .2; }
@keyframes heroFloat {
  0%,100% { transform: translate(-50%,-50%) translateY(0) rotate(0deg); }
  50%     { transform: translate(-50%,-50%) translateY(-16px) rotate(8deg); }
}
@media (prefers-reduced-motion: reduce) { .hero-fx i { animation: none; } .hero-fx { transition: none; } }

/* header polish — search removed, greener, glassy, centred nav */
.site-header { background: rgba(20,29,39,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.header-top { border-bottom: none; }
.header-top-inner { padding: 10px 0; gap: 14px; }
.header-right { margin-left: auto; }
.nav-row { border-top: 1px solid rgba(255,255,255,0.05); }
.nav .nav-item, .nav .dropdown-trigger { border-bottom: none !important; border-radius: 10px; padding: 10px 15px; }
.nav .nav-item:hover, .nav .dropdown-trigger:hover, .nav .has-dropdown:hover .dropdown-trigger {
  color: #fff; background: rgba(108,194,74,0.12);
}
.nav .nav-item.active { color: #fff; background: rgba(108,194,74,0.16); }
.nav .nav-item.active .nav-ico { color: var(--gold); }
@media (min-width: 981p
/* ====================================================== 
   page-hero glow-up — ambient light + floating icons (built by JS)
   ====================================================== */
.page-hero { isolation: isolate; }
.page-hero::before {
  content: ""; position: absolute; left: 50%; top: -40px; transform: translateX(-50%);
  width: 900px; height: 380px; z-index: -2; pointer-events: none;
  background:
    radial-gradient(460px 240px at 50% 0%, rgba(108,194,74,0.16), transparent 70%),
    radial-gradient(620px 300px at 50% 12%, rgba(74,163,255,0.10), transparent 72%);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(closest-side at 50% 35%, #000 35%, transparent 80%);
  mask-image: radial-gradient(closest-side at 50% 35%, #000 35%, transparent 80%);
}
.page-hero h1, .page-hero .lead, .page-hero .breadcrumbs { position: relative; z-index: 1; }
.page-hero .hero-fx i { font-size: calc(40px * var(--s,1)); opacity: .07; }
.page-hero:hover .hero-fx i { opacity: .16; }

/* ====================================================== 
   tools glow-up — glassy cards, green/blue results (v n)
   ====================================================== */
.tool-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid var(--border); border-radius: 20px;
  box-shadow: 0 22px 50px -26px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.tool-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .6;
}
.tool-card input, .tool-card select {
  background: rgba(17,25,33,0.7); border: 1px solid var(--border-strong); border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.tool-card input:focus, .tool-card select:focus {
  border-color: var(--gold); background: rgba(17,25,33,0.96);
  box-shadow: 0 0 0 3px rgba(108,194,74,0.18);
}
.tool-result {
  background: linear-gradient(135deg, rgba(108,194,74,0.13), rgba(74,163,255,0.08));
  border: 1px solid rgba(108,194,74,0.28); border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.tool-result .big {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #9bf06a, #19c37d);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.tool-result .row span:last-child { color: #fff; }

/* ---- bonus calculator: two-column desktop layout ---- */
.calc-fields .field { margin-bottom: 18px; }
@media (min-width: 860px) {
  .calc-card {
    max-width: 980px; display: grid; grid-template-columns: 1.15fr 0.85fr;
    gap: 0 34px; align-items: start;
  }
  .calc-card .calc-fields {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px;
  }
  .calc-card .tool-result { margin-top: 6px; position: sticky; top: 96px; }
}
/* ======================================================
   Authors / E-E-A-T — compact byline, team strip, profiles
   ====================================================== */
.byline { display: flex; align-items: center; gap: 10px 12px; flex-wrap: wrap; color: var(--text-dim); font-size: 13.5px; margin: 12px 0 22px; }
.byline .who { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-weight: 600; }
.byline a.who:hover .nm { text-decoration: underline; }
.byline .who img, .byline .others img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg-1); background: var(--bg-2); }
.byline .nm { color: var(--gold); }
.byline .others { display: inline-flex; align-items: center; gap: 9px; color: var(--text-muted); font-weight: 600; }
.byline a.others:hover { color: var(--gold); }
.byline .others .stack { display: inline-flex; }
.byline .others .stack img { margin-left: -12px; }
.byline .others .stack img:first-child { margin-left: 0; }
.byline .sep { opacity: .4; }
.byline .upd { display: inline-flex; align-items: center; gap: 6px; }

/* bottom "Authors" team strip (all pages) */
.authors-strip { border-top: 1px solid var(--border); }
.authors-strip .section-head { margin-bottom: 4px; }
.author-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: 22px; }
.author-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid var(--border); border-radius: 18px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.author-card:hover { transform: translateY(-4px); border-color: rgba(108,194,74,0.4); box-shadow: 0 18px 40px -18px rgba(108,194,74,0.5); }
.author-card > img, .author-card .ac-avatar { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(108,194,74,0.4); flex-shrink: 0; }
.author-card h3 { margin: 0; font-size: 1.1rem; display: flex; align-items: center; gap: 7px; }
.author-card h3 a { color: var(--text); }
.author-card h3 a:hover { color: var(--gold); }
.author-card .role { color: var(--gold); font-size: 12.5px; font-weight: 600; margin: 2px 0 8px; }
.author-card p { color: var(--text-muted); font-size: 13.5px; margin: 0 0 12px; line-height: 1.55; }
.author-card .ac-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.author-card .ac-links a { font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; color: var(--gold); }
.author-card .ac-links a.ac-li { color: #4aa3ff; }
.verified { color: var(--gold); font-size: 15px; }

/* author profile page */
.page-hero.author-hero { text-align: center; padding-bottom: 18px; }
.author-profile-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin: 4px auto 8px; }
.author-avatar-lg { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(108,194,74,0.45); box-shadow: 0 14px 32px -14px rgba(108,194,74,0.6); }
.author-profile-head h1 { margin: 0; display: flex; align-items: center; gap: 10px; }
.author-role { color: var(--gold); font-weight: 600; margin: 4px 0 0; }
.author-linkedin { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; }

/* contributors popover (casino.guru style) */
.byline .others-wrap { position: relative; display: inline-flex; }
.byline .others { display: inline-flex; align-items: center; gap: 9px; background: none; border: none; padding: 0; margin: 0; cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--text-muted); }
.byline .others:hover { color: var(--gold); }
.byline .others .stack { display: inline-flex; }
.byline .others .stack img { margin-left: -12px; }
.byline .others .stack img:first-child { margin-left: 0; }
.contrib-pop { position: absolute; top: calc(100% + 10px); left: 0; z-index: 60; width: 300px; background: #1b2733; border: 1px solid var(--border-strong); border-radius: 14px; box-shadow: 0 22px 50px rgba(0,0,0,.5); padding: 8px; text-align: left; }
.contrib-pop[hidden] { display: none; }
.cp-head { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px 10px; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.cp-close { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 16px; line-height: 1; }
.cp-row { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 10px; }
.cp-row:hover { background: var(--surface-hover); }
.cp-role { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-dim); }
.cp-name { display: block; font-weight: 700; color: var(--text); }
.cp-sub { display: block; font-size: 12px; color: var(--text-muted); }
.author-email { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; margin-left: 10px; }
.author-card .ac-links a.ac-mail { color: var(--text-muted); }

/* mobile fixes: hero team strip + contributor popover */
@media (max-width: 560px) {
  .hero-team { flex-direction: column !important; text-align: center; gap: 8px !important; padding: 12px 16px !important; border-radius: 16px !important; }
  .contrib-pop { position: fixed !important; left: 12px !important; right: 12px !important; top: auto !important; bottom: 14px !important; width: auto !important; max-width: none !important; z-index: 200 !important; }
}

/* review header ambient hero */
.review-hero { position: relative; overflow: hidden; isolation: isolate; }
.review-hero::before { content:""; position:absolute; left:50%; top:-50px; transform:translateX(-50%); width:1000px; height:420px; z-index:-2; pointer-events:none; background: radial-gradient(500px 260px at 50% 0%, rgba(108,194,74,0.16), transparent 70%), radial-gradient(680px 320px at 50% 12%, rgba(74,163,255,0.10), transparent 72%); }
.review-hero::after { content:""; position:absolute; inset:0; z-index:-1; pointer-events:none; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size:22px 22px; -webkit-mask-image: linear-gradient(180deg,#000,transparent 72%); mask-image: linear-gradient(180deg,#000,transparent 72%); }
/* mobile header: align hamburger with content, drop empty nav-row bar */
@media (max-width: 980px) {
  /* the hamburger is a flex sibling of the EN pill inside .header-right, so the
     browser vertically centers the pair and spaces them evenly — no positioning needed */
  .header-right { display: flex !important; align-items: center !important; gap: 10px !important; margin-left: auto !important; margin-right: -8px !important; }
  .header-top-inner { padding: 12px 0 !important; }
  .menu-toggle { position: static !important; transform: none !important; margin: 0 !important;
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    width: 40px !important; height: 36px !important; padding: 0 !important; border-radius: 10px !important;
    border: 1px solid var(--border-strong) !important; background: none !important; color: var(--text) !important;
    font-size: 18px !important; line-height: 1 !important; }
  /* collapse the now-empty second bar; the dropdown panel still opens from here */
  .nav-row { border-top: none !important; }
  .nav-row .container { min-height: 0 !important; padding: 0 !important; }
}

/* ---------------- Floating Telegram button (auto-localised) ---------------- */
.tg-float { position: fixed; right: 20px; bottom: 80px; z-index: 240; width: 104px; height: 104px; display: block; text-decoration: none; filter: drop-shadow(0 10px 22px rgba(0,0,0,.42)); }
.tg-float::before { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #fff; border: 1px solid rgba(0,0,0,.06); }
.tg-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform-origin: 50% 50%; animation: tgspin 9s linear infinite; }
.tg-ring text { font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: .5px; fill: #15202b; }
@keyframes tgspin { to { transform: rotate(360deg); } }
.tg-badge { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(180deg,#2aabee,#229ed9); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.35); }
/* Market flag badge on bonus/casino thumbnails - all styling is inline per badge (bigger flags, no bubble); thumbs keep clipping so the logo glow layer stays contained */
