/* ============================================
   CASINO ARENA — Dark Neon Theme
   ============================================ */

:root {
  --bg-dark: #0f172a;              /* deep slate navy */
  --bg-darker: #0a0f1f;             /* for footer / sticky */
  --bg-elevated: #1e293b;           /* card background */
  --bg-elevated-2: #293548;         /* hover */
  --bg-card: #1e293b;
  --bg-card-hover: #293548;
  --red: #ef4444;
  --red-hover: #f87171;
  --red-dark: #dc2626;
  --green: #22c55e;
  --green-hover: #4ade80;
  --gold: #fbbf24;
  --gold-hover: #fcd34d;
  --white: #f8fafc;
  --text: #cbd5e1;
  --text-muted: #94a3b8;
  --border: rgba(148,163,184,0.15);
  --border-strong: rgba(148,163,184,0.25);
  --border-hover: rgba(34,197,94,0.5);
  --glow: 0 4px 20px rgba(34,197,94,0.15);
  --glow-strong: 0 8px 30px rgba(34,197,94,0.25);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.3);
  --radius: 10px;
  --radius-sm: 6px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { font-size:16px; scroll-behavior:smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  background-image:
    radial-gradient(at 0% 0%, rgba(34,197,94,0.04) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(251,191,36,0.03) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
}

a { color: var(--green); text-decoration:none; transition: color 0.2s; }
a:hover { color: var(--green-hover); }

.container { max-width:1100px; margin:0 auto; padding:0 20px; }

/* ============================================
   PAGE LOADING BAR (top of screen)
   ============================================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}
.page-loader::before {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #16a34a, #22c55e, #4ade80, #fbbf24);
  background-size: 200% 100%;
  box-shadow: 0 0 10px rgba(34,197,94,0.6), 0 0 20px rgba(34,197,94,0.4);
  animation: loaderProgress 1s ease-out forwards, loaderShine 1.2s linear infinite;
  border-radius: 0 2px 2px 0;
}
.page-loader.done::before {
  animation: loaderProgress 0.4s ease-out forwards, loaderFadeOut 0.4s 0.3s ease-out forwards;
}
@keyframes loaderProgress {
  0% { width: 0%; }
  30% { width: 35%; }
  60% { width: 65%; }
  85% { width: 88%; }
  100% { width: 100%; }
}
@keyframes loaderShine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes loaderFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* ============================================
   TOP BANNER (CTA)
   ============================================ */
.top-banner {
  background: linear-gradient(90deg, #16a34a, #22c55e);
  text-align: center;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1001;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-banner a {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}
.top-banner a:hover { color: #ffd700; }
@media (max-width: 600px) {
  .top-banner {
    font-size: 0.72rem;
    padding: 8px 10px;
    letter-spacing: -0.2px;
  }
}
@media (max-width: 380px) {
  .top-banner { font-size: 0.65rem; }
}

/* ============================================
   TOP BAR + HAMBURGER
   ============================================ */
.topbar {
  background: rgba(15,23,42,0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
@media (max-width: 600px) {
  .topbar { height: 60px; padding: 0 16px; }
}
.topbar-logo { display: flex; align-items: center; flex-shrink: 0; min-width: 0; }
.topbar-logo img { height: 44px; width: auto; max-width: 220px; }
@media (max-width: 600px) {
  .topbar-logo img { height: 36px; max-width: 160px; }
}
.topbar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 1; min-width: 0; }
.topbar-search {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 14px;
  color: var(--text-muted);
  font-size: 0.8rem;
  width: 140px;
  min-width: 0;
  flex-shrink: 1;
  outline: none;
  transition: border-color 0.2s;
}
.topbar-search:focus { border-color: var(--gold); }
.hamburger {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

/* ============================================
   SIDEBAR MENU (tnbet style)
   ============================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  height: 100vh;
  background: var(--bg-darker);
  z-index: 2000;
  overflow-y: auto;
  transition: left 0.3s ease;
  border-right: 1px solid var(--border);
  box-shadow: 4px 0 24px rgba(0,0,0,0.3);
}
.sidebar.open { left: 0; }
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}
.sidebar-overlay.open { display: block; }
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-header img { height: 42px; width: auto; max-width: 200px; }
.sidebar-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Sidebar nav links */
.sidebar-nav {
  padding: 10px 0;
  list-style: none;
}
.sidebar-nav ul { list-style: none; margin: 0; padding: 0; }
.sidebar-nav > li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sidebar-nav .menu-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
}
.sidebar-nav .menu-heading:hover { background: rgba(255,255,255,0.03); }
.sidebar-nav .menu-heading svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: transform 0.2s;
}
.sidebar-nav li.open > .menu-heading svg { transform: rotate(180deg); }
.sidebar-nav .submenu {
  display: none;
  padding-left: 20px;
}
.sidebar-nav li.open > .submenu { display: block; }
.sidebar-nav .submenu a {
  display: block;
  padding: 8px 16px;
  color: var(--text);
  font-size: 0.82rem;
  border-radius: 4px;
  transition: all 0.15s;
}
.sidebar-nav .submenu a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

/* Sub-submenu (payment methods, bonus types, etc.) */
.sidebar-nav .sub-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.15s;
}
.sidebar-nav .sub-heading:hover { background: rgba(255,255,255,0.03); }
.sidebar-nav .sub-heading svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
  transition: transform 0.2s;
}
.sidebar-nav li.sub-open > .sub-heading svg { transform: rotate(180deg); }
.sidebar-nav .sub-submenu {
  display: none;
  padding-left: 16px;
}
.sidebar-nav li.sub-open > .sub-submenu { display: block; }

/* Direct menu link (no dropdown) */
.sidebar-nav .menu-link {
  display: block;
  padding: 12px 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.sidebar-nav .menu-link:hover { background: rgba(255,255,255,0.03); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: rgba(255,255,255,0.2); font-size: 0.7rem; }
.breadcrumb .current { color: var(--text); }
.breadcrumb .home-icon { font-size: 0.85rem; }

/* ============================================
   AUTHOR BOX
   ============================================ */
.author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  margin-bottom: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.author-box { position: relative; }
.author-box .author-info { flex: 1; }
.author-name a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.author-name a:hover { color: var(--green); }
.author-socials-mini {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.author-socials-mini a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
  text-decoration: none;
}
.author-socials-mini a:hover {
  background: var(--green);
  color: #0a0a0f;
}
.author-socials-mini svg { width: 14px; height: 14px; fill: currentColor; }
@media (max-width: 600px) {
  .author-socials-mini { gap: 6px; }
  .author-socials-mini a { width: 28px; height: 28px; }
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(251,191,36,0.1);
  flex-shrink: 0;
  overflow: hidden;
  text-decoration: none;
}
a.author-avatar:hover { transform: scale(1.05); transition: transform 0.2s; }
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.author-block-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.author-block-avatar { overflow: hidden; }
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-name {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 700;
}
.author-name span { color: var(--text-muted); font-weight: 400; }
.author-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   TABLE OF CONTENTS (Sommaire)
   ============================================ */
.toc {
  background: linear-gradient(180deg, rgba(34,197,94,0.05), rgba(15,23,42,0.4));
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 14px;
  margin: 28px 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.04));
  border-bottom: 1px solid rgba(34,197,94,0.15);
  transition: background 0.15s;
}
.toc-header:hover { background: linear-gradient(135deg, rgba(34,197,94,0.22), rgba(34,197,94,0.08)); }
.toc.closed .toc-header { border-bottom-color: transparent; }
.toc-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc-title .icon { font-size: 1.2rem; }
.toc-toggle {
  background: none;
  border: none;
  color: var(--green);
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s;
}
.toc.closed .toc-toggle { transform: rotate(-90deg); }
.toc-list {
  list-style: none;
  padding: 18px 22px 20px;
  margin: 0;
  /* 2-column layout when there are 8+ items */
  columns: 2;
  column-gap: 28px;
  column-rule: 1px solid rgba(255,255,255,0.06);
}
.toc.closed .toc-list { display: none; }
.toc-list li {
  padding: 0;
  margin: 0;
  break-inside: avoid;
}
.toc-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 0.9rem;
  border-left: 3px solid transparent;
  transition: all 0.15s;
  border-radius: 0 6px 6px 0;
  text-decoration: none;
  line-height: 1.45;
}
.toc-list a:hover {
  border-left-color: var(--green);
  background: rgba(34,197,94,0.08);
  color: var(--white);
  padding-left: 16px;
}
.toc-list .toc-h3 { padding-left: 28px; font-size: 0.78rem; }

@media (max-width: 700px) {
  .toc-list { columns: 1; padding: 12px 16px 16px; }
  .toc-list a { font-size: 0.88rem; padding: 7px 10px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 70px 20px 50px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(34,197,94,0.04) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content:'';
  position:absolute;
  top:-200px; right:-200px;
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(251,191,36,0.06) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  position: relative;
}
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
  position: relative;
}
.hero .btn { font-size: 1rem; padding: 14px 40px; }

@media (max-width:768px) {
  .hero { padding: 50px 20px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  box-shadow: 0 2px 8px rgba(34,197,94,0.25);
}
.btn:hover {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  box-shadow: 0 6px 20px rgba(34,197,94,0.4);
  transform: translateY(-2px);
  color: #fff;
}
.btn-large {
  padding: 15px 45px;
  font-size: 1rem;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 50px 0;
}
.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.section-title::after {
  content:'';
  display:block;
  width:48px;
  height:3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  margin: 10px 0 0;
}

/* ============================================
   FILTER BAR (above casino tops)
   ============================================ */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}
.sort-dropdown { position: relative; }
.filter-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 9px 16px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 200px;
  justify-content: flex-start;
}
.filter-sort:hover { border-color: var(--green); }
.filter-sort svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.filter-sort svg:last-child { margin-left: auto; transition: transform 0.2s; }
.sort-dropdown.open .filter-sort svg:last-child { transform: rotate(180deg); }
.filter-sort span { flex: 1; text-align: left; }

.sort-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  padding: 6px;
}
.sort-dropdown.open .sort-menu { display: flex; flex-direction: column; }
.sort-option {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.88rem;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.15s;
}
.sort-option:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.sort-option.active {
  background: rgba(34,197,94,0.1);
  color: var(--green);
  font-weight: 700;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  color: #0a0a0f;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { background: #33ffaa; transform: translateY(-1px); }
.filter-btn svg { width: 14px; height: 14px; fill: currentColor; }
.filter-count {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 1px 8px;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ============================================
   FILTER MODAL (full-screen overlay)
   ============================================ */
.filter-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2500;
  backdrop-filter: blur(4px);
}
.filter-modal-overlay.open { display: block; }
.filter-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1100px;
  max-height: 90vh;
  background: #0a0e1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  z-index: 2501;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.filter-modal-overlay.open ~ .filter-modal,
.filter-modal.open { display: flex; }

.filter-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.filter-modal-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.filter-modal-close:hover { border-color: var(--green); }
.filter-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.filter-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.filter-group {
  margin-bottom: 24px;
}
.filter-group-label {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}
.filter-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.88rem;
  margin-bottom: 10px;
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="rgb(160,160,160)"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.filter-select:focus { outline: none; border-color: var(--green); }
.filter-select option { background: #1a1a2e; color: var(--white); }

.filter-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 14px;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
  user-select: none;
}
.filter-check input {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  appearance: none;
  position: relative;
}
.filter-check input:checked {
  background: var(--green);
  border-color: var(--green);
}
.filter-check input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0a0a0f;
  font-size: 0.85rem;
  font-weight: 800;
}

.filter-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}
.filter-game-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 14px 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-game-item:hover, .filter-game-item.active {
  border-color: var(--green);
  background: rgba(0,255,136,0.05);
}
.filter-game-item .icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}
.filter-game-item .name {
  font-size: 0.7rem;
  color: var(--text);
  font-weight: 600;
}

.filter-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}
.filter-clear {
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 8px 0;
}
.filter-clear:hover { color: var(--green); }
.filter-apply {
  background: var(--green);
  color: #0a0a0f;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-apply:hover { background: #33ffaa; }

@media (max-width: 600px) {
  .filter-modal { width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
}

/* ============================================
   CASINO TOP CARDS
   ============================================ */
.casino-tops {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.top-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--border-hover);
  border-left-color: var(--green);
}

/* Left — logo + rank + rating */
.top-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 15px;
  gap: 8px;
  position: relative;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
}
.top-card-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: #1a1a2e;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-card-logo {
  width: 110px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  padding: 6px;
}
.top-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.top-card-rating {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}
.top-card-rating .stars {
  color: var(--gold);
  font-size: 0.9rem;
}
.top-card-payment {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.top-card-payment svg {
  width: 14px;
  height: 14px;
  fill: var(--green);
}

/* Center — features */
.top-card-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 25px;
  gap: 6px;
}
.top-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}
.top-card-feature .check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.top-card-feature a {
  color: var(--white);
  font-weight: 700;
}
.top-card-feature a:hover {
  color: var(--green);
}

/* Right — bonus + CTA */
.top-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  gap: 15px;
  text-align: center;
}
.top-card-bonus {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.3;
}
.top-card-bonus-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}
a.btn-cta, .btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(76,175,80,0.3);
}
a.btn-cta:hover, .btn-cta:hover {
  background: linear-gradient(135deg, #66bb6a, #43a047);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76,175,80,0.4);
}

/* Stars */
.stars { color: var(--gold); font-size: 0.85rem; }

/* Mobile */
@media (max-width:900px) {
  .top-card {
    grid-template-columns: 1fr;
  }
  .top-card-left {
    flex-direction: row;
    padding: 15px;
    gap: 15px;
    justify-content: flex-start;
  }
  .top-card-rank { top: 6px; left: 6px; }
  .top-card-logo { width: 70px; height: 50px; }
  .top-card-center { padding: 10px 20px; }
  .top-card-right {
    flex-direction: row;
    padding: 15px 20px;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.03);
  }
  .top-card-bonus { font-size: 0.95rem; text-align: left; }
  .btn-cta { padding: 12px 25px; font-size: 0.8rem; }
}
@media (max-width:500px) {
  .top-card-right {
    flex-direction: column;
    align-items: stretch;
  }
  .top-card-bonus { text-align: center; }
  .btn-cta { width: 100%; }
}

/* ============================================
   SEO CONTENT
   ============================================ */
.seo-content {
  padding: 40px 0;
}
.seo-content h2 {
  font-size: 1.45rem;
  color: var(--white);
  margin: 44px 0 16px;
  letter-spacing: -0.3px;
  font-weight: 700;
  padding-left: 14px;
  border-left: 4px solid var(--green);
}
.seo-content h2:first-child { margin-top:0; }
.seo-content h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin: 28px 0 12px;
  font-weight: 600;
}
.seo-content p {
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}
.seo-content p:last-child { margin-bottom: 0; }
.seo-content strong { color: var(--white); }

/* Lists — modern bullet style */
.seo-content ul, .seo-content ol {
  margin: 12px 0 22px 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}
.seo-content ul li {
  position: relative;
  padding: 10px 14px 10px 38px;
  margin-bottom: 8px;
  background: rgba(34,197,94,0.04);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  font-size: 0.92rem;
  line-height: 1.6;
}
.seo-content ul li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--green);
  color: #0a0a0f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}
.seo-content ol {
  counter-reset: section-counter;
}
.seo-content ol li {
  position: relative;
  padding: 10px 14px 10px 44px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.6;
  counter-increment: section-counter;
}
.seo-content ol li::before {
  content: counter(section-counter);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Tables — clean comparison style */
.seo-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.seo-content table thead {
  background: linear-gradient(135deg, #1a8a5c, #15744d);
}
.seo-content table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 0.78rem;
}
.seo-content table td {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.seo-content table tr:nth-child(even) td {
  background: rgba(255,255,255,0.015);
}
.seo-content table tr:hover td {
  background: rgba(34,197,94,0.04);
}
.seo-content table td:first-child {
  font-weight: 600;
  color: var(--white);
}
.seo-content table strong { color: var(--gold); }

/* Highlight boxes for key info */
.seo-content blockquote,
.seo-content .highlight-box,
.seo-content .info-box {
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(251,191,36,0.04));
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  margin: 22px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  font-size: 0.95rem;
}
.seo-content blockquote strong,
.seo-content .highlight-box strong,
.seo-content .info-box strong { color: var(--gold); }

/* Warning box */
.seo-content .warning-box {
  background: rgba(239,68,68,0.06);
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  margin: 22px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
}

/* Two-column comparison for pros/cons in content */
.seo-content .pros-cons-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0;
}
@media (max-width: 700px) {
  .seo-content .pros-cons-inline { grid-template-columns: 1fr; }
}

/* Mobile table scroll */
@media (max-width: 600px) {
  .seo-content table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Visual section break */
.seo-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 36px 0;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s;
  font-size: 0.95rem;
}
.faq-q:hover { background: rgba(34,197,94,0.04); }
.faq-q .arrow {
  transition: transform 0.3s;
  color: var(--green);
  font-size: 0.75rem;
}
.faq-q.active .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--text);
  line-height: 1.7;
}
.faq-a.active {
  max-height: 500px;
  padding: 0 20px 16px;
}

/* ============================================
   INTERNAL LINKS
   ============================================ */
.related-links {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.related-links h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 15px;
}
.link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.link-pill {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.link-pill:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(34,197,94,0.08);
  transform: translateY(-1px);
}

/* ============================================
   FOOTER (multi-column)
   ============================================ */
.footer {
  background: #0a0a14;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 1.4fr;
  gap: 35px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

/* Brand column (right side) */
.footer-brand img {
  height: 64px;
  width: auto;
  max-width: 240px;
  margin-bottom: 18px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-brand p strong { color: var(--white); }
.footer-brand p a { color: var(--red); text-decoration: underline; }
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  transition: all 0.2s;
}
.footer-socials a:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

/* Trust badges row */
.footer-trust {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 30px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 700;
}
.footer-trust-item .badge-18 {
  width: 38px;
  height: 38px;
  border: 2px solid #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-weight: 800;
  font-size: 0.85rem;
}
.footer-trust-item .stars { color: var(--gold); font-size: 0.95rem; }
.footer-trust-img {
  height: 26px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(1.1) saturate(0.9);
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.92);
  padding: 4px 8px;
  border-radius: 4px;
}
.footer-trust-img:hover { opacity: 1; }
.footer-trust { gap: 28px; padding: 24px 0; }
.footer-trust-item { font-size: 0.75rem; }
.footer-trust-item .badge-18 { width: 32px; height: 32px; font-size: 0.75rem; border-width: 1.5px; }

/* Responsibility logos row (above footer-trust) */
.footer-responsibility {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.resp-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity 0.2s, color 0.2s;
  opacity: 0.65;
}
.resp-logo:hover { opacity: 1; color: rgba(255,255,255,0.85); }
.resp-logo .resp-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.resp-logo .resp-text-bold { font-weight: 800; color: #fff; }
.resp-logo.resp-18 .resp-icon { color: #ef4444; border-color: #ef4444; }
.resp-logo .resp-gpwa-box {
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 768px) {
  .footer-responsibility { gap: 24px; padding: 20px 0 14px; }
  .resp-logo { font-size: 0.75rem; }
  .resp-logo .resp-icon { width: 26px; height: 26px; font-size: 0.65rem; }
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .dmca {
  background: #0d8e3f;
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .footer-trust { gap: 16px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-disclaimer {
  background: rgba(255,0,51,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   CASINO REVIEW PAGE — tnbet style
   ============================================ */

/* Review Hero */
.review-hero {
  background: linear-gradient(135deg, #0a0014 0%, #1a0033 40%, #120020 100%);
  padding: 40px 0;
  border-bottom: 2px solid var(--red);
}
.review-hero-inner {
  display: flex;
  align-items: center;
  gap: 35px;
}
.review-hero-logo {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.review-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.review-hero-info {
  flex: 1;
}
.review-hero-info h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.review-hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.review-hero-rating .stars { font-size: 1.3rem; }
.review-hero-rating .rating-text { color: var(--text-muted); font-size: 0.95rem; }

/* Stat cards (bonus + free spins) */
.review-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.stat-card {
  background: rgba(255,0,51,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 25px;
  text-align: center;
  min-width: 140px;
}
.stat-card-icon {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.stat-card-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.stat-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width:768px) {
  .review-hero-inner { flex-direction: column; text-align: center; }
  .review-hero-logo { width: 100px; height: 100px; }
  .review-hero-info h1 { font-size: 1.6rem; }
  .review-stats { justify-content: center; }
}

/* Quick Facts Table */
.quick-facts {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 30px 0;
}
.quick-facts-title {
  background: rgba(255,0,51,0.08);
  padding: 12px 20px;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.quick-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.quick-fact {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.quick-fact:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,0.04);
}
.quick-fact-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.quick-fact-value {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width:600px) {
  .quick-facts-grid { grid-template-columns: 1fr; }
  .quick-fact:nth-child(odd) { border-right: none; }
}

/* ============================================
   REVIEW PAGE LAYOUT (2 columns)
   ============================================ */
.review-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-areas: "aside main";
  gap: 32px;
  margin: 30px auto;
  max-width: 1200px;
  padding: 0 20px;
  align-items: start;
}
.review-main {
  min-width: 0;
  grid-area: main;
}
.review-aside {
  grid-area: aside;
  align-self: start;
}
@media (max-width: 1024px) {
  .review-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "aside" "main";
  }
}

/* H1 area */
.review-h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Author block */
.author-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.author-block-left { display: flex; align-items: center; gap: 12px; }
.author-block-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1a1a2e;
  flex-shrink: 0;
}
.author-block-info { display: flex; flex-direction: column; }
.author-block-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.author-block-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.author-block-name a { color: var(--white); }
.author-block-name a:hover { color: var(--green); }
.author-block-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.author-block-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.author-block-right .check { color: var(--green); margin-right: 6px; }
.author-block-right a { color: var(--white); font-weight: 600; }
.author-block-right a:hover { color: var(--green); }
@media (max-width: 700px) {
  .author-block { grid-template-columns: 1fr; }
}

.disclaimer-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}
.disclaimer-text a { color: var(--gold); }

/* Notre avis box */
.notre-avis {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 25px;
}
.notre-avis-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.notre-avis-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(220,38,38,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notre-avis-icon svg { width: 22px; height: 22px; fill: #dc2626; }
.notre-avis-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.notre-avis-content { color: var(--text); line-height: 1.75; font-size: 0.92rem; }
.notre-avis-content p { margin-bottom: 14px; }
.notre-avis-content strong { color: var(--white); }
.notre-avis-content a { color: var(--red); }
.notre-avis-content a.btn-cta { color: #fff; }
.notre-avis-cta {
  text-align: center;
  margin-top: 20px;
}

/* Pros / Cons grid (Avantages / Inconvénients) */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}
.pros-cons-col {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
}
.pros-cons-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}
.pros-cons-col ul { list-style: none; padding: 0; margin: 0; }
.pros-cons-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.pros-cons-col.pros li {
  background: rgba(34,197,94,0.07);
  color: var(--text);
}
.pros-cons-col.cons li {
  background: rgba(239,68,68,0.07);
  color: var(--text);
}
.pros-cons-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 800;
}
.pros-cons-col.pros .pros-cons-badge { background: var(--green); color: #0a0a0f; }
.pros-cons-col.cons .pros-cons-badge { background: #ef4444; }

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

/* Bonus details (rows with table + button) */
.bonus-details-wrap {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 25px 0;
  box-shadow: var(--shadow-sm);
}
.bonus-details-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.bonus-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bonus-detail-row {
  display: grid;
  grid-template-columns: 180px 1fr 140px;
  gap: 20px;
  align-items: center;
}
.bonus-detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
  font-size: 0.92rem;
}
.bonus-detail-icon { font-size: 1.4rem; }
.bonus-detail-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #0f1729;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.bonus-detail-cell {
  padding: 10px 16px;
  font-size: 0.82rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bonus-detail-cell:last-child { border-bottom: none; }
.bonus-detail-cell-label {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}
.bonus-detail-cell-value {
  color: #fff;
  font-weight: 700;
  text-align: right;
}
.bonus-detail-cta {
  display: inline-block;
  padding: 14px 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
  box-shadow: 0 2px 8px rgba(34,197,94,0.25);
}
.bonus-detail-cta:hover {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34,197,94,0.4);
}
.bonus-details-show-all {
  text-align: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.bonus-details-show-all a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.bonus-details-show-all a:hover { color: var(--green); }
@media (max-width: 768px) {
  .bonus-detail-row { grid-template-columns: 1fr; }
}

/* Sommaire (collapsible) */
.summary-box {
  background: linear-gradient(180deg, #0f1729, #1a1a2e);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 25px 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.summary-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px;
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.summary-header:hover { background: rgba(34,197,94,0.05); }
.summary-header .toggle-text {
  color: var(--green);
  font-size: 0.85rem;
}
.summary-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.summary-box.open .summary-content {
  padding: 18px 20px;
  max-height: 800px;
}
.summary-content ol {
  margin: 0;
  padding-left: 20px;
}
.summary-content li {
  padding: 6px 0;
}
.summary-content a { color: var(--text); }
.summary-content a:hover { color: var(--red); }

/* ============================================
   RIGHT SIDEBAR WIDGET (Aside) — original style
   ============================================ */
.aside-card {
  background: linear-gradient(180deg, #f0f4ff, #e6e9f7);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  color: #1a1a2e;
}
.aside-image-block {
  padding: 30px 20px 20px;
  text-align: center;
  position: relative;
}
.aside-retraits-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #2563eb;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 0 var(--radius);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
}
.aside-retraits-badge svg { width: 14px; height: 14px; display: block; margin: 0 auto 4px; fill: #fff; }
.aside-casino-img {
  max-width: 180px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
/* Webscore inside the main aside card (light bg) */
.aside-card-webscore {
  background: rgba(15,23,42,0.04);
  border-top: 1px solid rgba(15,23,42,0.08);
  border-bottom: 1px solid rgba(15,23,42,0.08);
  padding: 16px;
  color: #1a1a2e;
}
.aside-card-webscore .aside-webscore-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.aside-card-webscore .aside-webscore-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
}
.aside-card-webscore .aside-webscore-info {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #6b7280;
  color: #6b7280;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}
.aside-card-webscore .aside-webscore-main {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}
.aside-card-webscore .aside-gauge-wrap {
  width: 90px;
  height: 50px;
  flex-shrink: 0;
}
.aside-card-webscore .aside-gauge-svg { width: 100%; height: 100%; }
.aside-card-webscore .aside-gauge-bg {
  fill: none;
  stroke: rgba(15,23,42,0.1);
  stroke-width: 12;
}
.aside-card-webscore .aside-gauge-fill {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
}
.aside-card-webscore .aside-webscore-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}
.aside-card-webscore .aside-webscore-value sup {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
}
.aside-card-webscore .aside-webscore-base {
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 4px;
}

.aside-rating-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1a1a2e;
  color: #fff;
}
.aside-rating-block {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.aside-rating-block::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.aside-rating-stars { color: var(--gold); font-size: 0.85rem; margin-top: 6px; }
.aside-rating-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.aside-verdict-block {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.aside-verdict-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.aside-verdict-badge {
  background: var(--green);
  color: #0a0a0f;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.aside-gauge {
  background: #0a0a14;
  padding: 16px;
  text-align: center;
  color: #fff;
}
.aside-gauge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}
.aside-gauge-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green);
  margin: 4px 0;
}
.aside-gauge-eval {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}
.aside-language {
  background: rgba(0,0,0,0.04);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #1a1a2e;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.aside-language .check { color: #16a34a; font-weight: 800; }
.aside-bonus {
  padding: 14px 16px;
  background: rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.aside-bonus-label {
  font-size: 0.65rem;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.aside-bonus-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
}
.aside-cta {
  display: block;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: #fff !important;
  padding: 14px;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s;
}
.aside-cta:hover { background: linear-gradient(135deg, #66bb6a, #43a047); color: #fff !important; }

/* Info card (Informations) */
.aside-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.aside-info-title {
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aside-info-list { list-style: none; padding: 0; margin: 0; }
.aside-info-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}
.aside-info-list li:first-child { border-top: none; }
.aside-info-list .label {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.aside-info-list .value {
  color: var(--white);
  font-weight: 600;
}
.aside-info-list .value.highlight { color: var(--gold); text-decoration: underline; }

/* Webscore widget with gauge */
.aside-webscore {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.aside-webscore-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.aside-webscore-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.aside-webscore-info {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}
.aside-webscore-main {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.aside-gauge-wrap {
  width: 90px;
  height: 50px;
  position: relative;
  flex-shrink: 0;
}
.aside-gauge-svg { width: 100%; height: 100%; }
.aside-gauge-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 12;
}
.aside-gauge-fill {
  fill: none;
  stroke: url(#gauge-gradient);
  stroke-width: 12;
  stroke-linecap: round;
}
.aside-webscore-score {
  display: flex;
  flex-direction: column;
}
.aside-webscore-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.aside-webscore-value sup {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.aside-webscore-base {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.aside-webscore-partners {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.aside-webscore-partner {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
}
.aside-webscore-partner-logo {
  width: 28px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  font-weight: 800;
  font-size: 0.55rem;
  flex-shrink: 0;
}
.aside-webscore-partner-rating {
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 700;
}

/* Aside grid (jeux, logiciels, paiements) */
.aside-grid-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.aside-grid-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aside-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.aside-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  color: var(--text);
  text-align: center;
  text-decoration: none;
}
a.aside-grid-item:hover { color: var(--green); }
.aside-grid-item-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(34,197,94,0.06));
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 4px;
  transition: all 0.2s;
}
.aside-grid-item:hover .aside-grid-item-icon {
  background: linear-gradient(135deg, rgba(34,197,94,0.3), rgba(34,197,94,0.12));
  border-color: var(--green);
  transform: scale(1.05);
}
.aside-grid-item img {
  height: 38px;
  width: auto;
  max-width: 50px;
  object-fit: contain;
}
.aside-grid-item-icon.payment-icon {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.15);
}
/* Provider/game logos from Cloudinary need more room than the emoji circle */
.aside-grid-item-logo {
  background: rgba(255,255,255,0.95) !important;
  width: 68px !important;
  height: 68px !important;
  border-radius: 12px !important;
  border-color: rgba(255,255,255,0.15) !important;
  padding: 6px;
}
/* Main grid-item logos in providers/payments sections of review pages */
.grid-item .grid-item-img {
  max-width: 80px;
  max-height: 40px;
  object-fit: contain;
}
.aside-see-all {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 14px;
  text-decoration: none;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.aside-see-all:hover { color: var(--green); }

/* ============================================
   PREVIEW CAROUSELS (top of review page)
   ============================================ */
.preview-section {
  margin: 30px 0;
  position: relative;
}
.preview-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.preview-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.preview-section-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.preview-arrows {
  display: flex;
  gap: 8px;
}
.preview-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.preview-arrow:hover { border-color: var(--green); color: var(--green); }

.preview-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 5px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.preview-carousel::-webkit-scrollbar { height: 6px; }
.preview-carousel::-webkit-scrollbar-track { background: transparent; }
.preview-carousel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.preview-card {
  flex-shrink: 0;
  width: 100px;
  height: 90px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  transition: all 0.2s;
}
.preview-card:hover {
  border-color: var(--green);
  background: rgba(0,255,136,0.04);
}
.preview-card-icon {
  font-size: 1.6rem;
}
.preview-card-icon svg { width: 28px; height: 28px; fill: var(--green); }
.preview-card-img {
  height: 32px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}
.preview-card-name {
  font-size: 0.72rem;
  color: var(--text);
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.preview-see-all {
  text-align: center;
  margin-top: 15px;
}
.preview-see-all a {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
}
.preview-see-all a:hover {
  border-color: var(--green);
  color: var(--green);
}

.preview-divider {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 30px 0;
}

/* ============================================
   BONUS PACK (welcome pack structure)
   ============================================ */
.bonus-pack {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}
.bonus-pack-headline {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.bonus-pack-headline strong {
  color: var(--green);
}
.bonus-pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 15px;
}
.bonus-tier {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px;
}
.bonus-tier-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.bonus-tier-amount {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.bonus-tier-coin {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  border-radius: 50%;
  flex-shrink: 0;
}
.bonus-tier-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.bonus-tier-percent {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.bonus-tier-fs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.bonus-tier-fs-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ff9800, #d97706);
  border-radius: 50%;
  flex-shrink: 0;
}
.bonus-tier-meta {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 10px;
  margin-top: 8px;
}
.bonus-tier-meta strong {
  color: var(--white);
  font-weight: 700;
  margin-left: 4px;
}

.bonus-pack-alt-title {
  font-size: 0.95rem;
  color: var(--white);
  margin-top: 25px;
  margin-bottom: 10px;
}

/* ============================================
   REGISTRATION STEPS
   ============================================ */
.reg-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.reg-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.reg-step-num {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: #0a0a0f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.reg-step-content { flex: 1; }
.reg-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.reg-step-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

/* ============================================
   SUPPORT CHANNELS
   ============================================ */
.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.support-channel {
  padding: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
}
.support-channel-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.support-channel-info { flex: 1; }
.support-channel-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.support-channel-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.support-channel-detail strong {
  color: var(--green);
}

/* ============================================
   FAQ 2 COLUMNS
   ============================================ */
.review-faq.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .review-faq.faq-grid { grid-template-columns: 1fr; }
}

/* Review Sections */
.review-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.review-section:last-child {
  border-bottom: none;
}
.review-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-section-title .icon {
  font-size: 1.3rem;
}
.review-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.review-text strong {
  color: var(--white);
}
.review-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin: 25px 0 12px;
}

/* Bonus Cards */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}
.bonus-card {
  background: rgba(255,0,51,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}
.bonus-card:hover {
  border-color: var(--border-hover);
}
.bonus-card-title {
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bonus-card-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}
.bonus-card-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Game Categories Grid */
.game-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.game-cat {
  text-align: center;
  padding: 18px 8px;
  background: rgba(255,0,51,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
}
.game-cat:hover {
  background: rgba(255,0,51,0.12);
  border-color: var(--red);
  transform: translateY(-2px);
}
.game-cat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.game-cat-name {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Payment / Provider Grids */
.grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.grid-item {
  padding: 14px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 65px;
}
.grid-item:hover {
  border-color: var(--border-hover);
  background: rgba(255,0,51,0.05);
}
.grid-item-icon {
  font-size: 1.4rem;
}
.grid-item-img {
  height: 28px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
}
.grid-item-name {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}
.grid-items-count {
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.pros-box, .cons-box {
  padding: 25px;
  border-radius: var(--radius);
}
.pros-box {
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.2);
}
.cons-box {
  background: rgba(255,0,51,0.05);
  border: 1px solid rgba(255,0,51,0.2);
}
.pros-box h3 {
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 15px;
}
.cons-box h3 {
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 15px;
}
.pros-box ul, .cons-box ul {
  list-style: none;
}
.pros-box li, .cons-box li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.pros-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.cons-box li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

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

/* Advantages list */
.advantages-list {
  margin: 20px 0;
}
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.advantage-item:last-child { border-bottom: none; }
.advantage-icon {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.advantage-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}
.advantage-text strong {
  color: var(--white);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,0,51,0.12), rgba(45,0,82,0.25));
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 35px;
  text-align: center;
  margin: 35px 0;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Related Casinos */
.related-casinos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 20px 0;
}
.related-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.related-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.related-card-header {
  padding: 20px 15px;
  background: rgba(255,0,51,0.06);
  text-align: center;
}
.related-card-logo {
  width: 60px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 4px;
  overflow: hidden;
}
.related-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.related-card-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.related-card-rating {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
}
.related-card-body {
  padding: 15px;
}
.related-card-bonus {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.related-card-btn {
  display: block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(34,197,94,0.2);
}
.related-card-btn:hover {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(34,197,94,0.3);
}

/* Review FAQ */
.review-faq {
  margin: 20px 0;
}
.review-faq .faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.review-faq .faq-q {
  padding: 14px 18px;
  background: rgba(255,0,51,0.04);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  transition: background 0.2s;
  margin: 0;
  line-height: 1.4;
}
h3.faq-q { font-size: 0.95rem; }
.review-faq .faq-q:hover { background: rgba(255,0,51,0.08); }
.review-faq .faq-q::after {
  content: "▼";
  color: var(--red);
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.review-faq .faq-item.active .faq-q::after {
  transform: rotate(180deg);
}
.review-faq .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 18px;
}
.review-faq .faq-item.active .faq-a {
  max-height: 300px;
  padding: 0 18px 14px;
}

/* Final Verdict */
.final-verdict {
  background: linear-gradient(135deg, rgba(255,0,51,0.1), rgba(45,0,82,0.2));
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.final-verdict h2 {
  color: var(--red);
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.final-verdict p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* ============================================
   MINI GAMES HUB & INDIVIDUAL PAGES
   ============================================ */
.minigames-hub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin: 30px 0;
}
.minigame-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.minigame-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.minigame-card-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  background: linear-gradient(135deg, var(--card-color, #1e293b), rgba(0,0,0,0.4));
}
.minigame-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}
.minigame-card-icon {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.minigame-card-category {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(10px);
}
.minigame-card-rtp {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: #0a0a0f;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  z-index: 2;
}
.minigame-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.minigame-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.minigame-card-provider {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.minigame-card-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text);
  padding: 10px 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.minigame-card-stats span strong { color: var(--gold); display: block; font-size: 0.85rem; }

/* Mini-games filters */
.minigames-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.minigame-filter {
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.minigame-filter:hover, .minigame-filter.active {
  background: var(--green);
  color: #0a0a0f;
  border-color: var(--green);
}

/* ============================================
   INDIVIDUAL MINI-GAME PAGE
   ============================================ */
.minigame-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  margin: 30px auto;
  max-width: 1200px;
  padding: 0 20px;
  align-items: start;
}
/* ============================================
   MINI-GAME PAGE — kasyno-smok style hero
   ============================================ */
.mg-hero {
  margin: 24px 0 0;
  padding: 30px 0;
}
.mg-hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.mg-hero-thumb {
  position: relative;
  width: 280px;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--game-color, #1e293b);
}
.mg-hero-thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--game-color, #1e293b) 0%, rgba(0,0,0,0.7) 100%);
}
.mg-hero-thumb-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.mg-hero-thumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.5rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
  z-index: 2;
}
.mg-hero-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.mg-hero-thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  z-index: 3;
}
.mg-hero-thumb-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.mg-hero-thumb-provider {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  font-weight: 600;
}

.mg-hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mg-hero-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.mg-hero-cat {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mg-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}
.mg-hero-rating .stars { color: var(--gold); }
.mg-hero-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 14px;
}
.mg-hero-desc {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 24px;
}
.mg-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.mg-cta-primary { padding: 16px 28px; font-size: 1rem; }
.mg-cta-demo {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}
.mg-cta-demo:hover { border-color: var(--green); color: var(--green); }
.mg-hero-bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.06);
  border-left: 3px solid var(--gold);
  padding: 10px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
}
.mg-hero-bonus-label { color: var(--text-muted); }
.mg-hero-bonus-value { color: var(--gold); font-weight: 700; }

/* Stats Grid (6 stats) */
.mg-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 30px 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.mg-stat {
  text-align: center;
  padding: 8px;
  border-right: 1px solid var(--border);
}
.mg-stat:last-child { border-right: none; }
.mg-stat-icon { font-size: 1.4rem; margin-bottom: 6px; }
.mg-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 4px;
}
.mg-stat-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}
.mg-stat-green { color: var(--green); }
.mg-stat-gold { color: var(--gold); }

/* 2-column article layout */
.mg-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  align-items: start;
}
.mg-main { min-width: 0; }
.mg-sidebar { position: sticky; top: 88px; }

/* Similar games grid */
.similar-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.similar-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}
.similar-game:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34,197,94,0.15);
}
.similar-game .emoji { font-size: 1.8rem; }
.similar-game .name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .mg-hero-grid { grid-template-columns: 1fr; }
  .mg-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .mg-stat:nth-child(3n) { border-right: none; }
  .mg-stat:nth-child(-n+3) { border-bottom: 1px solid var(--border); padding-bottom: 14px; margin-bottom: 8px; }
  .mg-layout { grid-template-columns: 1fr; }
  .mg-sidebar { position: static; }
}
@media (max-width: 600px) {
  .mg-hero-thumb-icon { font-size: 5rem; }
  .mg-stats-grid { grid-template-columns: repeat(2, 1fr); padding: 14px; }
  .mg-stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
  .mg-stat:last-child, .mg-stat:nth-last-child(2) { border-bottom: none; }
}

/* Featured CTA banner (replaces iframe) */
.minigame-banner-cta {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.25s;
  min-height: 200px;
}
.minigame-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  border-color: var(--green);
}
.minigame-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.minigame-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(34,197,94,0.2) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(251,191,36,0.15) 0%, transparent 50%);
}
.minigame-banner-content {
  position: relative;
  z-index: 2;
  padding: 32px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.minigame-banner-icon {
  font-size: 5rem;
  line-height: 1;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
}
.minigame-banner-text { color: #fff; }
.minigame-banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.minigame-banner-subtitle {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.minigame-banner-casino {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.minigame-banner-casino strong {
  color: #fff;
  font-weight: 800;
}
.minigame-banner-btn {
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(34,197,94,0.4);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .minigame-banner-content {
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon text" "btn btn";
    padding: 24px;
  }
  .minigame-banner-icon { grid-area: icon; font-size: 3.5rem; }
  .minigame-banner-text { grid-area: text; }
  .minigame-banner-btn { grid-area: btn; text-align: center; padding: 14px; }
  .minigame-banner-title { font-size: 1.2rem; }
}

.minigame-iframe-wrap {
  position: relative;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
}
.minigame-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.minigame-iframe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s;
}
.minigame-iframe-overlay.hidden { display: none; }
.minigame-iframe-overlay-icon {
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.minigame-iframe-overlay-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.minigame-iframe-overlay-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-align: center;
  max-width: 340px;
}
.minigame-iframe-overlay-btn {
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
  transition: all 0.2s;
}
.minigame-iframe-overlay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34,197,94,0.4);
}

/* Side info panel */
.minigame-info {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.minigame-info-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(251,191,36,0.04));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.minigame-info-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}
.minigame-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.minigame-info-provider {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.minigame-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.minigame-stat {
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.minigame-stat:nth-child(2n) { border-right: none; }
.minigame-stat:nth-last-child(-n+2) { border-bottom: none; }
.minigame-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.minigame-stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.minigame-stat-value.green { color: var(--green); }
.minigame-stat-value.gold { color: var(--gold); }

.minigame-cta-section {
  padding: 20px;
  background: rgba(34,197,94,0.04);
  border-top: 1px solid var(--border);
}
.minigame-cta-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.minigame-cta-casino {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.minigame-cta-casino:hover {
  border-color: var(--green);
  background: var(--bg-elevated-2);
}
.minigame-cta-casino img {
  width: 50px;
  height: 36px;
  object-fit: contain;
  background: rgba(255,255,255,0.95);
  border-radius: 4px;
  padding: 4px;
  flex-shrink: 0;
}
.minigame-cta-casino-name {
  flex: 1;
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 600;
}
.minigame-cta-casino-go {
  background: var(--green);
  color: #0a0a0f;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Description sections */
.minigame-description {
  margin-top: 30px;
}
.minigame-description h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin: 36px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--green);
  font-weight: 700;
}
.minigame-description h2:first-child { margin-top: 0; }
.minigame-description p {
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.7;
}
.minigame-description strong { color: var(--white); }

.minigame-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.minigame-feature {
  padding: 12px 14px;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.minigame-feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .minigame-layout { grid-template-columns: 1fr; }
}

/* ============================================
   HOMEPAGE BIG HERO + STATS BAR
   ============================================ */
.hp-hero {
  position: relative;
  margin: 30px 0 24px;
  background: linear-gradient(135deg, #064e3b 0%, #0f172a 35%, #4c1d95 100%);
  border-radius: var(--radius);
  padding: 48px 50px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(34,197,94,0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(168,85,247,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hp-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hp-hero-text { min-width: 0; }
.hp-hero-text h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.hp-hero-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
  max-width: 520px;
}
.hp-hero-text p strong { color: #fff; }
.hp-hero-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex-shrink: 0;
}
.hp-hero-btn {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(34,197,94,0.5);
  border-radius: 10px;
  padding: 18px 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  min-width: 100px;
}
.hp-hero-btn:hover {
  background: rgba(34,197,94,0.1);
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34,197,94,0.2);
}
.hp-hero-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(34,197,94,0.15);
  color: var(--green);
}
.hp-hero-btn-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Stats bar */
.hp-stats {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  box-shadow: var(--shadow-sm);
}
.hp-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hp-stat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.hp-stat-content { display: flex; flex-direction: column; min-width: 0; gap: 4px; }
.hp-stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.hp-stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hp-stat-badge {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.hp-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .hp-hero { padding: 32px 28px; }
  .hp-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hp-hero-buttons { grid-template-columns: repeat(6, 1fr); }
  .hp-stats { grid-template-columns: repeat(2, 1fr); padding: 18px; }
}
@media (max-width: 600px) {
  .hp-hero { padding: 24px 20px; }
  .hp-hero-buttons { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hp-hero-btn { padding: 14px 8px; min-width: 0; }
  .hp-hero-btn-label { font-size: 0.7rem; }
  .hp-stats { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================
   GAME LIBRARY (slot, roulette, blackjack, poker, live, baccarat, crash, jackpot pages)
   ============================================ */
.game-library {
  margin: 30px 0;
}
.game-library-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 14px;
}
.game-library-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.game-library-count {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 700;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  aspect-ratio: 4 / 5;
  background: var(--bg-elevated);
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  border-color: var(--green);
}
.game-card-thumb {
  position: relative;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, var(--game-color, #1e293b), rgba(0,0,0,0.7));
  overflow: hidden;
}
.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 70%);
}
.game-card-emoji {
  font-size: 3.4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  position: relative;
  z-index: 2;
}
.game-card-name-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
  text-align: center;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.game-card-rtp {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green);
  color: #0a0a0f;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  z-index: 4;
}
.game-card-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  color: #fff;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}
.game-card-info {
  height: 30%;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-elevated);
}
.game-card-provider {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}
.game-card-play {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.game-card-play::after {
  content: '→';
  transition: transform 0.2s;
}
.game-card:hover .game-card-play::after { transform: translateX(4px); }

/* Game library tabs */
.game-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.game-tab {
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.game-tab:hover { border-color: var(--green); color: var(--green); }
.game-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: #0a0a0f;
}

/* Game library page-load more */
.game-library-more {
  text-align: center;
  margin: 30px 0;
}
.game-library-more button {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.game-library-more button:hover {
  background: var(--green);
  border-color: var(--green);
  color: #0a0a0f;
}

@media (max-width: 600px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-card-emoji { font-size: 2.6rem; }
  .game-card-name-overlay { font-size: 0.82rem; padding: 18px 8px 10px; }
}

/* ============================================
   HERO CARD (top of keyword pages)
   ============================================ */
.hero-card {
  background: linear-gradient(135deg, #1a2238, #1e293b);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 24px 0 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.hero-card-content {
  min-width: 0;
}
.hero-card h1 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.4px;
  margin: 0 0 12px;
  line-height: 1.25;
}
.hero-card-intro {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 70ch;
}
.hero-card-intro strong { color: var(--white); }
.hero-card-count {
  text-align: right;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.hero-card-count strong {
  color: var(--white);
  font-weight: 700;
}
.hero-card-icons {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
}
.hero-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 2px solid var(--bg-elevated);
  margin-left: -10px;
  font-size: 1.1rem;
  position: relative;
}
.hero-card-icon:first-child { margin-left: 0; }
.hero-card-icon:nth-child(1) { z-index: 5; background: linear-gradient(135deg, #f7931a, #fbb040); }
.hero-card-icon:nth-child(2) { z-index: 4; background: linear-gradient(135deg, #627eea, #8aa4f7); }
.hero-card-icon:nth-child(3) { z-index: 3; background: linear-gradient(135deg, #26a17b, #4dd5a8); }
.hero-card-icon:nth-child(4) { z-index: 2; background: linear-gradient(135deg, #ef4444, #f87171); }
.hero-card-icon:nth-child(5) { z-index: 1; background: linear-gradient(135deg, #fbbf24, #fcd34d); }

/* Single big topic logo in hero (Skrill, Visa, Pragmatic, etc.) */
.hero-topic-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 14px 22px;
  flex-shrink: 0;
  min-width: 130px;
  min-height: 88px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.hero-topic-logo img {
  max-width: 130px;
  max-height: 60px;
  object-fit: contain;
  width: auto;
  height: auto;
}
@media (max-width: 700px) {
  .hero-topic-logo { padding: 10px 16px; min-width: 100px; min-height: 64px; }
  .hero-topic-logo img { max-width: 96px; max-height: 44px; }
}

@media (max-width: 768px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 22px 24px;
    gap: 18px;
  }
  .hero-card-icons {
    margin-top: 0;
  }
  .hero-card-count {
    text-align: left;
  }
}

.section-title-with-count {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

/* ============================================
   PAGINATION (casino tables)
   ============================================ */
.pagination-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin: 24px 0 12px;
  flex-wrap: wrap;
}
.pagination-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.pagination-btn:hover {
  border-color: var(--green);
  color: var(--green);
}
.pagination-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #0a0a0f;
}
.pagination-btn:disabled, .pagination-btn[aria-disabled="true"] {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================================
   INTERNAL LINKING (token-style)
   ============================================ */
.internal-links-section {
  margin: 50px 0 30px;
}
.internal-links-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 28px 0 16px;
  letter-spacing: -0.2px;
}
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  padding: 6px 0;
}
.internal-links a {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.15s;
}
.internal-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================================
   REVIEW STICKY SUB-NAV (tabs)
   ============================================ */
.review-subnav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(15,23,42,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 0;
}
.review-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 20px;
}
.review-subnav-inner::-webkit-scrollbar { display: none; }
.review-subnav a {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.review-subnav a:hover { color: var(--white); }
.review-subnav a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}
@media (max-width: 768px) {
  .review-subnav { top: 56px; }
  .review-subnav a { padding: 14px 14px; font-size: 0.82rem; }
}

/* ============================================
   TOP CARD EXPANDABLE DETAILS — improved
   ============================================ */
.top-card { padding: 0; }
.top-card-main {
  display: grid;
  grid-template-columns: 150px minmax(220px, 1fr) 84px 120px 220px;
  flex: 1;
  align-items: stretch;
  min-width: 0;
}
.top-card-main > * { min-width: 0; }
/* Homepage / hand-coded cards without the Wager+Intent columns: use 3-col grid */
.top-card-main:not(:has(.top-card-col-wager)) {
  grid-template-columns: 160px minmax(260px, 1fr) 280px;
}
.top-card-col-wager, .top-card-col-intent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid var(--border);
  gap: 4px;
}
.top-card-col-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 2px;
}
.top-card-col-value {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}
.top-card-col-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}
.top-card-details {
  display: none;
  padding: 26px 32px 24px;
  background: linear-gradient(180deg, rgba(15,23,42,0.55), rgba(15,23,42,0.75));
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
}
.top-card.open .top-card-details { display: block; }
/* Centered max-width grid — stats columns + advantages on the right */
.td-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 22px 32px;
  margin: 0 auto 18px;
  max-width: 1100px;
  align-items: start;
}
.td-col-advantages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: 4;
  grid-row: 1 / span 2;
}
.td-advantage {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.55;
}
.td-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: var(--green);
  color: #0a0a0f;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  margin-top: 2px;
}
/* Stats: minimal — no card box, just label + value stacked */
.td-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0;
  background: none;
  border: none;
}
.td-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.td-info {
  width: 14px;
  height: 14px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: serif;
  cursor: help;
}
.td-stat-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}
.td-stat-value.green { color: var(--green); }
.td-stat-value.gold { color: var(--gold); }
.td-stat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.td-description {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin: 0 auto 14px;
  max-width: 1100px;
  text-align: center;
}
.td-review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 8px 14px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 6px;
  transition: all 0.2s;
  margin: 0 auto;
}
/* Center the review-link wrapper area */
.top-card-details > .td-review-link {
  display: flex;
  justify-content: center;
  max-width: fit-content;
  margin: 0 auto;
}
.td-review-link:hover {
  background: rgba(34,197,94,0.15);
  border-color: var(--green);
  color: var(--green-hover);
}

/* Toggle button — improved */
.top-card-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(34,197,94,0.06);
  border: none;
  border-top: 1px solid rgba(34,197,94,0.2);
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all 0.2s;
}
.top-card-toggle:hover {
  background: rgba(34,197,94,0.12);
  color: var(--green-hover);
}
.top-card-toggle .toggle-arrow {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.25s;
}
.top-card.open .toggle-arrow { transform: rotate(180deg); }
.top-card-toggle .hidden { display: none; }

@media (max-width: 1024px) {
  .td-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px 24px;
  }
  .td-col-advantages {
    grid-column: 1 / -1;
    grid-row: auto;
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }
}
/* Intent icon inline inside top-card-payment (adaptive per page) */
.top-card-intent-icon {
  display: inline-block;
  font-size: 1rem;
  margin-right: 4px;
  line-height: 1;
}
.top-card-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  padding: 4px 8px;
  flex-wrap: wrap;
}
.top-card-payment strong { color: var(--text); font-weight: 700; }

/* Tablet: collapse to 3 rows (left | center | wager+intent inline | bonus) */
@media (max-width: 1100px) and (min-width: 769px) {
  .top-card-main { grid-template-columns: 160px 1fr 200px; }
  .top-card-col-wager, .top-card-col-intent {
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 10px 14px;
  }
  .top-card-col-wager .top-card-col-label,
  .top-card-col-intent .top-card-col-label { order: -1; }
}

@media (max-width: 768px) {
  .top-card-main { grid-template-columns: 1fr; }
  .top-card-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 14px;
    gap: 12px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .top-card-rank { position: static; }
  .top-card-logo { flex-shrink: 0; }
  .top-card-rating, .top-card-payment { width: auto; text-align: left; justify-content: flex-start; }
  .top-card-center { padding: 14px; }
  .top-card-col-wager, .top-card-col-intent {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-right: none;
    border-top: 1px solid var(--border);
    text-align: left;
  }
  .top-card-col-wager .top-card-col-label,
  .top-card-col-intent .top-card-col-label { order: -1; }
  .top-card-col-intent .top-card-col-icon { display: none; }
  .top-card-right { padding: 14px; border-left: none; border-top: 1px solid var(--border); }
  .td-grid { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .top-card-details { padding: 18px; }
}
@media (max-width: 480px) {
  .td-grid { grid-template-columns: 1fr; }
  .top-card-left { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================
   AUTHOR HERO PAGE
   ============================================ */
.author-hero {
  padding: 50px 0 30px;
  background: linear-gradient(180deg, rgba(34,197,94,0.04), transparent);
}
.author-hero-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
}
.author-hero-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.author-hero-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.author-hero-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}
.author-hero-verified svg { width: 14px; height: 14px; }
.author-hero-name {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}
.author-hero-title {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.author-hero-bio {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.author-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.author-hero-stat {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.author-hero-stat strong {
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
  font-weight: 800;
}
.author-hero-socials {
  display: flex;
  gap: 10px;
}
.author-hero-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.2s;
}
.author-hero-socials a:hover {
  background: var(--green);
  color: #0a0a0f;
  border-color: var(--green);
  transform: translateY(-2px);
}
.author-hero-socials svg { width: 16px; height: 16px; fill: currentColor; }

.author-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  margin: 30px 0 60px;
  align-items: start;
}
.author-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0;
}
.author-timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.author-timeline-year {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
}
.author-timeline-content {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}
.author-timeline-content strong { color: var(--white); }

@media (max-width: 768px) {
  .author-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .author-hero-photo { margin: 0 auto; }
  .author-hero-meta { justify-content: center; }
  .author-hero-socials { justify-content: center; }
  .author-content { grid-template-columns: 1fr; }
  .author-timeline-item { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-page { padding: 40px 0 60px; }
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.sitemap-section {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.sitemap-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sitemap-section h2 .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.sitemap-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-section li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sitemap-section li:last-child { border-bottom: none; }
.sitemap-section a {
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sitemap-section a::before {
  content: '›';
  color: var(--green);
  font-weight: 700;
}
.sitemap-section a:hover { color: var(--green); }

/* ============================================
   TOP 10 DETAILED RANKING (v=55)
   ============================================ */
.top10-ranking {
  margin: 36px 0 28px;
}
.top10-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--green);
  line-height: 1.3;
}
.top10-section-intro {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.top10-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.top10-card:hover {
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.top10-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  padding: 22px 24px 16px;
  line-height: 1.35;
  border-bottom: 1px solid var(--border);
}
.top10-card-rank {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #1a1a2e;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 5px 14px;
  border-radius: 999px;
  flex-shrink: 0;
}
/* Full-width banner image */
.top10-card-banner {
  margin: 0;
  padding: 0;
  background: rgba(15,23,42,0.4);
  position: relative;
}
.top10-card-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
}
.top10-card-banner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  padding: 36px 24px 18px;
}
.top10-card-banner-logo img {
  max-width: 260px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.top10-card-banner figcaption {
  padding: 8px 22px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.top10-card-banner figcaption a {
  color: var(--green);
  text-decoration: underline;
  font-weight: 600;
}
.top10-card-body {
  padding: 22px 24px;
}
.top10-card-text {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 18px;
}
.top10-card-text strong { color: var(--white); }
/* 2-column stats table (label left, value right) */
.top10-stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  background: rgba(15,23,42,0.4);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.top10-stats-table tr { border-bottom: 1px solid var(--border); }
.top10-stats-table tr:last-child { border-bottom: 0; }
.top10-stats-table tr:hover td { background: rgba(34,197,94,0.04); }
.top10-stat-th {
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  width: 38%;
  border-right: 1px solid var(--border);
  vertical-align: top;
}
.top10-stat-td {
  padding: 11px 16px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
  vertical-align: top;
  line-height: 1.55;
}
.top10-stat-icon { margin-right: 6px; font-size: 1.05rem; }
.top10-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.top10-pros, .top10-cons {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(15,23,42,0.35);
  border: 1px solid var(--border);
}
.top10-pros { border-left: 3px solid var(--green); }
.top10-cons { border-left: 3px solid #ef4444; }
.top10-pc-title {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text);
  margin-bottom: 6px;
}
.top10-pros .top10-pc-title { color: var(--green); }
.top10-cons .top10-pc-title { color: #f87171; }
.top10-pros ul, .top10-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top10-pros li, .top10-cons li {
  display: flex;
  gap: 8px;
  padding: 3px 0;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}
.top10-pros .pc-icon {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}
.top10-cons .pc-icon {
  color: #f87171;
  font-weight: 800;
  flex-shrink: 0;
}
.top10-card-cta {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 10px;
  text-align: center;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 16px rgba(34,197,94,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}
.top10-card-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(34,197,94,0.45);
}

@media (max-width: 768px) {
  .top10-card-title { font-size: 1.15rem; padding: 16px 14px 12px; }
  .top10-card-body { padding: 16px 14px; }
  .top10-card-banner img { max-height: 220px; }
  .top10-stat-th { width: 45%; font-size: 0.82rem; padding: 9px 12px; }
  .top10-stat-td { font-size: 0.86rem; padding: 9px 12px; }
  .top10-pros-cons { grid-template-columns: 1fr; }
}

/* ============================================
   ENRICHED SEO CONTENT — Insider tips, numbered atouts (v=47)
   ============================================ */
.enriched-content {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.enriched-content h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  margin: 38px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--green);
  line-height: 1.3;
}
.enriched-content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}
.enriched-content p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.enriched-content p strong { color: var(--white); }
.enriched-content ul, .enriched-content ol {
  margin: 12px 0 18px;
  padding-left: 22px;
}
.enriched-content ul li, .enriched-content ol li {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.enriched-content table {
  width: 100%;
  margin: 18px 0 24px;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.4);
}
.enriched-content table thead {
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(34,197,94,0.05));
}
.enriched-content table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text);
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}
.enriched-content table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
}
.enriched-content table tr:last-child td { border-bottom: 0; }
.enriched-content table tr:hover td { background: rgba(34,197,94,0.04); }
.enriched-content table a { color: #93c5fd; text-decoration: none; }
.enriched-content table a:hover { text-decoration: underline; }

/* Insider tip box (gold + green accent) */
.insider-tip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(251,191,36,0.06));
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  margin: 14px 0 22px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.65;
}
.insider-tip .insider-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.insider-tip strong {
  color: #fbbf24;
  margin-right: 4px;
}

/* ============================================
   TOP CASINO — Row layout (v=46) — adaptive intent column
   ============================================ */
.top-card.top-card-row {
  display: block;
  background: #1a2332;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;       /* tight stack */
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.top-card.top-card-row:hover {
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

/* Exclusive variant — subtle gold border accent (no more red) */
.top-card.top-card-row--exclusive {
  background: #1a2332;
  border: 1px solid rgba(251,191,36,0.35);
  margin-top: 10px;
}
.top-card.top-card-row--exclusive:hover {
  border-color: rgba(251,191,36,0.6);
  box-shadow: 0 8px 22px rgba(251,191,36,0.2);
}

/* Small gold pill badge in the corner — no more wide red banner */
.top-row-exclusive {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.top-row-exclusive span {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #1a1a2e;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(217,119,6,0.3);
}
.top-card-row--exclusive .top-row-main { padding-top: 28px; }

/* Main row grid: rank | logo+name | bonus | wager | intent | CTA */
.top-row-main {
  display: grid;
  grid-template-columns: 50px 220px 1fr 90px 1fr 130px;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
}

/* Rank trophy */
.top-row-rank {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-row-trophy {
  font-size: 1.8rem;
  filter: grayscale(60%);
  opacity: 0.5;
}
.top-row-trophy.gold {
  filter: none;
  opacity: 1;
  text-shadow: 0 2px 8px rgba(251,191,36,0.5);
}
.top-row-trophy.silver, .top-row-trophy.bronze {
  filter: none;
  opacity: 0.95;
}

/* Logo + name */
.top-row-logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-row-logo {
  flex-shrink: 0;
  width: 96px;
  height: 64px;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.top-row-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.top-row-name strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2px;
}
.top-row-name a {
  color: #3b82f6;
  text-decoration: underline;
  font-size: 0.82rem;
}

/* Columns (bonus / wager / intent) */
.top-row-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 6px;
}
.top-row-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.top-row-col-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
  margin-bottom: 4px;
}
.top-row-col-value {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.top-row-bonus-value {
  color: var(--white) !important;
  font-size: 1.05rem;
  font-weight: 800;
}
.top-row-wager {
  color: var(--text) !important;
  font-weight: 700;
}
/* Hide the redundant "Bonus" label since the value already starts with "Bonus 100% …" */
.top-row-col-bonus .top-row-col-label { display: none; }

/* Intent column with icon on the left */
.top-row-col-intent {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.top-row-col-intent > div {
  display: flex;
  flex-direction: column;
}
.top-row-intent-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* CTA */
.top-row-cta-col {
  display: flex;
  justify-content: flex-end;
}
.top-row-cta {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #fff !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: capitalize;
  text-align: center;
  min-width: 110px;
  box-shadow: 0 6px 14px rgba(34,197,94,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.top-row-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(34,197,94,0.5);
}

/* Tablet 768-1024px: 2-col grid with CTA full-width */
@media (max-width: 1024px) and (min-width: 769px) {
  .top-row-main {
    grid-template-columns: 50px 220px 1fr 1fr;
    gap: 14px;
    padding: 16px 18px;
  }
  .top-row-col:nth-of-type(3) { display: none; } /* hide intent on tablet — keep bonus + wager */
  .top-row-col:not(:last-of-type)::after { display: none; }
  .top-row-cta-col { grid-column: 1 / -1; justify-content: stretch; margin-top: 6px; }
  .top-row-cta { width: 100%; padding: 14px; }
}

/* Mobile ≤768px: full flex-column stack — fixes overlap from grid */
@media (max-width: 768px) {
  .top-row-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 14px 18px;
  }
  .top-row-rank {
    justify-content: flex-start;
    margin: 0;
  }
  .top-row-trophy { font-size: 1.6rem; }

  .top-row-logo-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
  }
  .top-row-logo {
    width: 130px;
    height: 78px;
  }
  .top-row-name strong { font-size: 1.1rem; }
  .top-row-name a { font-size: 0.85rem; }

  /* Each col becomes a full-width row: label left | value right */
  .top-row-col {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    width: 100%;
  }
  .top-row-col::after { display: none !important; }
  .top-row-col-label {
    margin-bottom: 0;
    font-size: 0.78rem;
    text-align: left;
  }
  .top-row-col-value {
    font-size: 1rem;
    text-align: right;
  }
  .top-row-bonus-value { font-size: 0.95rem; }

  /* Intent col: icon + label on the left, value on the right */
  .top-row-col-intent {
    flex-direction: row !important;
    gap: 10px;
  }
  .top-row-col-intent > div {
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .top-row-intent-icon { font-size: 1.3rem; }

  .top-row-cta-col {
    width: 100%;
    justify-content: stretch;
    margin-top: 4px;
  }
  .top-row-cta {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    min-width: 0;
  }
}

/* ============================================
   MINI-GAME PAGE — extra blocks (v=44)
   ============================================ */
.mg-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.mg-screenshot {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.4);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.mg-screenshot img { display: block; width: 100%; height: auto; }
.mg-screenshot figcaption {
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(15,23,42,0.6);
  text-align: center;
  font-style: italic;
}

.mg-updated {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-top: 12px;
  text-align: right;
}

/* Reviews grid for mini-game user testimonials */
.reviews-grid-mg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 16px 0;
}
.review-card-mg {
  padding: 16px;
  background: rgba(15,23,42,0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.review-card-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.review-card-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 10px;
}
.review-card-author {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.review-card-author strong { color: var(--text); }

/* TOC sticky in mini-game sidebar */
.mg-toc {
  margin-top: 14px;
  padding: 16px;
  background: rgba(15,23,42,0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.mg-toc-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 10px;
}
.mg-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tocCount;
}
.mg-toc-list li {
  counter-increment: tocCount;
  padding: 6px 0;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--border);
}
.mg-toc-list li:last-child { border-bottom: 0; }
.mg-toc-list a {
  display: flex;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
}
.mg-toc-list a::before {
  content: counter(tocCount, decimal-leading-zero);
  color: var(--green);
  font-weight: 700;
  min-width: 26px;
}
.mg-toc-list a:hover { color: var(--green); }

/* ============================================
   REVIEW PAGE — Screenshots (Cloudinary)
   ============================================ */
.review-screenshot {
  margin: 22px 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.review-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px 14px 0 0;
}
.review-screenshot-caption {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(15,23,42,0.6);
  text-align: center;
  font-style: italic;
}

/* ============================================
   EXCLUSIVE OFFER BANNER (review page top)
   ============================================ */
.exclusive-offer {
  position: relative;
  margin: 24px 0 28px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(247,200,90,0.18) 0%, rgba(76,175,80,0.14) 100%);
  border: 2px solid rgba(247,200,90,0.45);
  box-shadow: 0 14px 40px rgba(247,200,90,0.18), 0 6px 18px rgba(0,0,0,0.4);
}
.exclusive-offer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--gold));
  background-size: 200% 100%;
  animation: exclusiveShimmer 4s linear infinite;
}
@keyframes exclusiveShimmer { 0% { background-position: 0% 0; } 100% { background-position: -200% 0; } }
.exclusive-offer-badge {
  display: inline-block;
  margin: 14px 18px 0;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--gold), #f5a623);
  color: #1a1a2e;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(247,200,90,0.35);
}
.exclusive-offer-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  padding: 18px 22px 24px;
  align-items: center;
}
.exclusive-offer-left { min-width: 0; }
.exclusive-offer-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin: 6px 0 8px;
  line-height: 1.3;
}
.exclusive-offer-detail {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.55;
}
.exclusive-offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.exclusive-offer-meta-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.exclusive-offer-meta-item strong { color: var(--white); }
.exclusive-offer-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.exclusive-offer-code-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
}
.exclusive-offer-code-box {
  display: flex;
  align-items: stretch;
  background: #0e1119;
  border: 2px dashed var(--gold);
  border-radius: 12px;
  overflow: hidden;
}
.exclusive-offer-code {
  flex: 1;
  padding: 14px 16px;
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  text-align: center;
  background: rgba(247,200,90,0.05);
}
.exclusive-offer-copy {
  background: var(--green);
  color: #0a0a0f;
  border: none;
  padding: 0 16px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 0.78rem;
  transition: background 0.2s;
}
.exclusive-offer-copy:hover { background: #66bb6a; }
.exclusive-offer-copy.copied { background: #2196f3; color: #fff; }
.exclusive-offer-cta {
  display: block;
  padding: 14px 18px;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: #fff !important;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 28px;
  text-decoration: none;
  font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(76,175,80,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.exclusive-offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(76,175,80,0.45);
}
.exclusive-offer-link {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--green);
  text-decoration: none;
}
.exclusive-offer-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .exclusive-offer-body { grid-template-columns: 1fr; gap: 18px; }
  .exclusive-offer-title { font-size: 1.2rem; }
  .exclusive-offer-code { font-size: 1.15rem; letter-spacing: 2px; padding: 12px; }
}

/* ============================================
   REVIEW PAGE — Structured blocks (v=43)
   ============================================ */

/* Section subtitle small (H4) */
.review-subtitle-sm {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin: 18px 0 10px;
  opacity: 0.92;
}

/* Inline info/warning boxes for review pages */
.info-box-rv {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(59,130,246,0.04));
  border-left: 4px solid #3b82f6;
  padding: 14px 18px;
  margin: 18px 0;
  border-radius: 0 10px 10px 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.65;
}
.info-box-rv strong { color: #93c5fd; }
.info-box-rv a { color: #93c5fd; text-decoration: underline; }

.warning-box-rv {
  background: rgba(251,191,36,0.08);
  border-left: 4px solid #f59e0b;
  padding: 14px 18px;
  margin: 18px 0;
  border-radius: 0 10px 10px 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.65;
}
.warning-box-rv strong { color: #fbbf24; }

/* Quick facts compact 2-col table */
.facts-table-wrap { margin: 14px 0 20px; }
.facts-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.4);
}
.facts-table th, .facts-table td {
  padding: 11px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.facts-table tr:last-child th, .facts-table tr:last-child td { border-bottom: 0; }
.facts-table th {
  font-weight: 600;
  color: var(--text-muted);
  width: 42%;
  background: rgba(255,255,255,0.02);
}
.facts-table td { color: var(--text); font-weight: 600; }
.facts-table tr:hover td { background: rgba(34,197,94,0.04); }

/* Check-list (green checkmarks) */
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px 18px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Wagering contribution table */
.contribution-table,
.vip-table,
.games-overview-table,
.top-slots-table,
.mini-games-table,
.support-table,
.ux-score-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.4);
}
.contribution-table thead,
.vip-table thead,
.games-overview-table thead,
.top-slots-table thead,
.mini-games-table thead,
.support-table thead,
.ux-score-table thead {
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(34,197,94,0.06));
}
.contribution-table th,
.vip-table th,
.games-overview-table th,
.top-slots-table th,
.mini-games-table th,
.support-table th,
.ux-score-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}
.contribution-table td,
.vip-table td,
.games-overview-table td,
.top-slots-table td,
.mini-games-table td,
.support-table td,
.ux-score-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
}
.contribution-table tr:last-child td,
.vip-table tr:last-child td,
.games-overview-table tr:last-child td,
.top-slots-table tr:last-child td,
.mini-games-table tr:last-child td,
.support-table tr:last-child td,
.ux-score-table tr:last-child td { border-bottom: 0; }
.contribution-table tr:hover td,
.vip-table tr:hover td,
.games-overview-table tr:hover td,
.top-slots-table tr:hover td,
.mini-games-table tr:hover td,
.support-table tr:hover td,
.ux-score-table tr:hover td { background: rgba(34,197,94,0.05); }

/* VIP table header style override */
.vip-table thead { background: linear-gradient(135deg, rgba(251,191,36,0.18), rgba(251,191,36,0.04)); }
.vip-table tr:hover td { background: rgba(251,191,36,0.05); }

/* UX score bar */
.score-bar {
  width: 100%;
  max-width: 200px;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 999px;
}

/* Features grid (atmosphere) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 14px 0 20px;
}
.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(15,23,42,0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s, transform 0.15s;
}
.feature-item:hover {
  border-color: rgba(34,197,94,0.4);
  transform: translateY(-2px);
}
.feat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.04));
  border-radius: 10px;
}
.feature-item strong { color: var(--text); font-size: 0.95rem; }
.feat-desc { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; }

/* Live categories list */
.live-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin: 14px 0 20px;
}
.live-cat-row {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(15,23,42,0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.live-cat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.live-cat-row strong { color: var(--text); font-size: 0.95rem; }
.live-cat-list { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; }

/* Payment groups list */
.payment-groups {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 20px;
}
.payment-group-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 16px;
  background: rgba(15,23,42,0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-wrap: wrap;
}
.payment-group-row strong {
  color: var(--text);
  font-size: 0.95rem;
  min-width: 180px;
}
.payment-group-row span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Rules list (bonus rules) */
.rules-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.rules-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(15,23,42,0.4);
  gap: 12px;
}
.rules-list .rule-key { color: var(--text-muted); font-size: 0.88rem; }
.rules-list .rule-val { color: var(--text); font-weight: 700; font-size: 0.92rem; }

/* Support response table channel icon */
.support-table .ch-icon { margin-right: 6px; }

@media (max-width: 768px) {
  .contribution-table, .vip-table, .games-overview-table,
  .top-slots-table, .mini-games-table, .support-table,
  .ux-score-table, .facts-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .check-list { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .live-categories { grid-template-columns: 1fr; }
  .rules-list { grid-template-columns: 1fr; }
  .payment-group-row { flex-direction: column; gap: 4px; }
  .payment-group-row strong { min-width: 0; }
}

/* ============================================
   REVIEW PAGE — TOC emojis, H2 emojis, tables
   ============================================ */
.summary-list-emoji { list-style: none; padding-left: 0; counter-reset: tocItem; }
.summary-list-emoji li { padding: 8px 0; counter-increment: tocItem; }
.summary-list-emoji li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s;
}
.summary-list-emoji li a::before {
  content: counter(tocItem) ".";
  color: var(--text-muted);
  font-weight: 700;
  min-width: 22px;
}
.summary-list-emoji li a:hover { color: var(--green); }
.toc-emoji {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.10);
  border-radius: 8px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.h2-emoji {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(34,197,94,0.06));
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Bonus comparison table */
.bonus-table-wrap {
  margin: 18px 0 24px;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.4);
}
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.bonus-table thead {
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(34,197,94,0.06));
}
.bonus-table th {
  text-align: left;
  padding: 14px 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}
.bonus-table td {
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
  vertical-align: middle;
}
.bonus-table tr:last-child td { border-bottom: 0; }
.bonus-table tr:hover td { background: rgba(34,197,94,0.05); }
.bonus-row-icon { font-size: 1.1rem; margin-right: 4px; }
.bonus-pill {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}
.bonus-table-cta {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.bonus-table-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(34,197,94,0.35);
}

/* Payments detail table */
.payments-table-wrap {
  margin: 18px 0 24px;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.4);
}
.payments-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.payments-table thead {
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(59,130,246,0.06));
}
.payments-table th {
  text-align: left;
  padding: 14px 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}
.payments-table td {
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
  vertical-align: middle;
}
.payments-table td a { color: #93c5fd; text-decoration: none; font-weight: 700; }
.payments-table td a:hover { color: #bfdbfe; text-decoration: underline; }
.payments-table tr:last-child td { border-bottom: 0; }
.payments-table tr:hover td { background: rgba(59,130,246,0.05); }

@media (max-width: 768px) {
  .bonus-table, .payments-table { min-width: 0; }
  .bonus-table thead, .payments-table thead { display: none; }
  .bonus-table tr, .payments-table tr {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }
  .bonus-table td, .payments-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border: 0;
    font-size: 0.88rem;
  }
  .bonus-table td::before, .payments-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.4px;
    margin-right: 12px;
  }
  .bonus-table td:last-child, .payments-table td:last-child { justify-content: flex-end; }
  .bonus-table-cta { width: 100%; text-align: center; padding: 10px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
