/* ========================================
   BET-NOLIMIT.COM — Dark Premium Theme
   ======================================== */

:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #0e0e16;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a25;
  --border: #2a2a3a;
  --border-light: rgba(255, 255, 255, 0.08);
  --text-primary: #f0f0f5;
  --text-secondary: #8888aa;
  --text-muted: #555570;
  --accent: #0095FF;
  --accent-hover: #0078DD;
  --accent-glow: rgba(0, 149, 255, 0.15);
  --accent-alt: #FF6B35;
  --accent-alt-hover: #e55a2b;
  --cta: #FF6B35;
  --cta-hover: #e55a2b;
  --cta-glow: rgba(255, 107, 53, 0.2);
  --danger: #ff4444;
  --success: #00cc66;
  --star-filled: #ffd700;
  --star-half: #ffd700;
  --star-empty: #333;

  /* Typography */
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ========== RESET ========== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

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

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ========== LAYOUT ========== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background: var(--bg-secondary);
}

.section--cta {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.section__title {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

/* ========== HEADER ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-md) 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-header__logo {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-accent {
  color: var(--accent);
}

.site-header__nav {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link--active {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--space-md);
  }

  .nav-open .site-header__nav {
    display: flex;
  }

  .site-header__burger {
    display: flex;
  }

  .lang-switcher {
    display: none;
  }

  .nav-open .lang-switcher {
    display: flex;
  }
}

/* ========== LANG SWITCHER ========== */

.lang-switcher {
  display: flex;
  gap: var(--space-xs);
}

.lang-switcher__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.lang-switcher__flag {
  border-radius: 2px;
  vertical-align: middle;
  box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.lang-switcher__link:hover {
  color: var(--text-primary);
}

.lang-switcher__link--active {
  color: var(--accent);
  background: var(--accent-glow);
}

/* ========== HERO ========== */

.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== HOMEPAGE ========== */

/* --- HP Hero --- */
.hp-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 149, 255, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hp-hero__content {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.hp-hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.hp-hero__accent {
  background: linear-gradient(135deg, var(--accent) 0%, #60BFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.hp-hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Stats bar */
.hp-hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
  max-width: 500px;
  margin: 0 auto;
}

.hp-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hp-hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.hp-hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- HP Section titles --- */
.hp-section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* --- HP Picks (top 3 recommendations) --- */
.hp-picks {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
}

.hp-picks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.hp-pick {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  transition: all 0.3s;
}

.hp-pick:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-4px);
}

.hp-pick--featured {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.hp-pick__badge {
  position: absolute;
  top: -10px;
  left: var(--space-lg);
  background: var(--cta);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hp-pick__badge--alt {
  background: var(--accent);
  color: var(--bg-primary);
}

.hp-pick__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hp-pick__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.hp-pick__name {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.hp-pick__rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hp-pick__bonus {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hp-pick__pros {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.hp-pick__pros li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: var(--space-md);
  position: relative;
  list-style: none;
}

.hp-pick__pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.hp-pick__actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: auto;
}

/* --- HP Why --- */
.hp-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.hp-why__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.hp-why__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: var(--radius-md);
}

.hp-why__text h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.hp-why__text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- HP Mobile --- */
@media (max-width: 900px) {
  .hp-picks__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hp-why {
    grid-template-columns: 1fr;
  }

  .hp-hero__stats {
    gap: var(--space-lg);
  }
}

@media (max-width: 560px) {
  .hp-hero__title {
    font-size: 2.2rem;
  }

  .hp-hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hp-hero__stats {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
}

/* ========== STARS ========== */

.stars {
  display: inline-flex;
  gap: 2px;
}

.star {
  font-size: 1rem;
}

.star--full {
  color: var(--star-filled);
}

.star--half {
  color: var(--star-half);
  opacity: 0.6;
}

.star--empty {
  color: var(--star-empty);
}

/* ========== TAGS ========== */

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.tag--crypto {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.tag--app {
  border-color: #6366f1;
  color: #818cf8;
}

.tag--nokyc {
  border-color: var(--accent-alt);
  color: var(--accent-alt);
}

/* ========== BUTTONS ========== */

.btn, .cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn--sm {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.btn--primary, .cta-btn--primary {
  background: var(--cta);
  color: white;
  border-radius: var(--radius-md);
}

.btn--primary:hover, .cta-btn--primary:hover {
  background: var(--cta-hover);
  color: white;
  box-shadow: 0 0 20px var(--cta-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.btn--outline:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.cta-btn--medium {
  padding: 12px 28px;
  font-size: 1rem;
}

.cta-btn--large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.cta-btn--alt {
  background: var(--accent-alt);
  color: white;
  border-radius: var(--radius-md);
}

.cta-btn--alt:hover {
  background: var(--accent-alt-hover);
  color: white;
}

/* (old cta-buttons/branded/app styles removed — see cta-group/cta-main/cta-app) */

.cta-redirect {
  background: var(--glass-bg);
  border: 1px solid var(--accent-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.cta-redirect__msg {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

/* ========== COMPARE TABLE ========== */

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table thead {
  background: var(--bg-secondary);
}

.compare-table th {
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.compare-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.compare-table__row {
  transition: background 0.2s;
}

.compare-table__row:hover {
  background: var(--bg-card-hover);
}

.compare-table__rank {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  width: 40px;
}

.compare-table__name {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 180px;
}

.compare-table__logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.compare-table__type {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.compare-table__actions {
  display: flex;
  gap: var(--space-xs);
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.badge--yes {
  background: var(--accent-glow);
  color: var(--accent);
}

.badge--no {
  background: rgba(255, 68, 68, 0.1);
  color: var(--danger);
}

/* ========== BOOKMAKER CARDS ========== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.bk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all 0.3s;
}

.bk-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

.bk-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.bk-card__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.bk-card__name {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.bk-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bk-card__bonus {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.bk-card__tags {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.bk-card__link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========== BOOKMAKER PAGE ========== */

.bk-hero {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.bk-hero__content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.bk-hero__logo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  object-fit: contain;
  background: var(--bg-card);
  padding: var(--space-md);
  border: 1px solid var(--border);
}

.bk-hero__info h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: var(--space-sm);
}

.bk-hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.rating-score {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--star-filled);
}

.bk-hero__tags {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .bk-hero__content {
    flex-direction: column;
    text-align: center;
  }

  .bk-hero__tags {
    justify-content: center;
  }
}

/* ========== BK SECTIONS ========== */

.bk-section {
  padding: var(--space-xl) 0;
}

.bk-section--alt {
  background: var(--bg-secondary);
}

.bk-section--cta {
  padding: var(--space-2xl) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.bk-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

/* Info grid */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.info-grid--2col {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.info-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.info-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item__label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-right: auto;
}

.info-item__value {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: right;
}

/* Bonus card */

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-lg);
  box-shadow: 0 0 30px var(--accent-glow);
}

.bonus-card__amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.bonus-card__code {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.bonus-card__wagering {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

/* Odds display */

.odds-display {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.odds-display__rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

/* App platforms */

.app-platforms {
  display: flex;
  gap: var(--space-md);
}

.platform {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
}

.platform--yes {
  border-color: var(--accent);
  color: var(--accent);
}

/* Review */

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

.review-pros, .review-cons {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.review-pros h3 {
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.review-cons h3 {
  color: var(--danger);
  margin-bottom: var(--space-md);
}

.review-pros li, .review-cons li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  color: var(--text-secondary);
}

.review-pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.review-cons li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

/* Verdict */

.verdict {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.verdict h3 {
  margin-bottom: var(--space-md);
}

.verdict p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.verdict__score {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.verdict__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--star-filled);
}

/* ========== FEATURES GRID ========== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  backdrop-filter: blur(10px);
}

.feature-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ========== TOP 3 ========== */

.top3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.top3-category h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.top3-category .bk-card {
  margin-bottom: var(--space-md);
}

/* ========== GUIDE CONTENT ========== */

.guide-content {
  max-width: 800px;
  margin: 0 auto;
}

.guide-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.guide-content h3 {
  font-size: 1.2rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.guide-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.guide-content ul, .guide-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.guide-content li {
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  list-style: disc;
}

.guide-content ol li {
  list-style: decimal;
}

/* ========== BK CONTENT (editorial) ========== */

.bk-content h2 {
  font-size: 1.4rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.bk-content h3 {
  font-size: 1.1rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.bk-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

/* ========== FOOTER ========== */

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.site-footer__tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

.site-footer__links h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.site-footer__links li {
  margin-bottom: var(--space-xs);
}

.site-footer__links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--text-primary);
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.site-footer__disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 500px;
}

.site-footer__copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== SEO TEXT ========== */

.seo-text {
  max-width: 800px;
  margin: 0 auto;
}

.seo-text h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.seo-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* ========== FAQ ========== */

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border-light);
}

.faq-item p {
  padding: var(--space-md) var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ========== CTA OFFICIAL LINK ========== */

.cta-btn-official {
  display: inline-block;
  margin-top: var(--space-md);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  transition: color 0.2s;
}

.cta-btn-official:hover {
  color: var(--text-primary);
}

/* ========== MOBILE TABLE FIX ========== */

@media (max-width: 768px) {
  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: var(--space-sm);
  }

  .compare-table__name {
    min-width: 120px;
  }

  .compare-table__logo {
    width: 24px;
    height: 24px;
  }

  .compare-table__actions {
    flex-direction: column;
  }

  .compare-table__odds,
  .compare-table__rating .stars {
    font-size: 0.75rem;
  }
}

/* ========== TOOLS ========== */

.tool-container {
  max-width: 700px;
  margin: 0 auto;
}

.tool-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.tool-box h3 {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.tool-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.tool-row label {
  min-width: 140px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.tool-input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.tool-input:focus {
  border-color: var(--accent);
}

.tool-input::placeholder {
  color: var(--text-muted);
}

.tool-select {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 14px;
  outline: none;
  cursor: pointer;
}

.tool-select:focus {
  border-color: var(--accent);
}

.tool-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  margin-top: var(--space-sm);
}

.tool-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 20px var(--accent-glow);
}

.tool-result {
  background: var(--bg-secondary);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  display: none;
}

.tool-result.visible {
  display: block;
}

.tool-result h3 {
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.tool-result-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
}

.tool-result-row:last-child {
  border-bottom: none;
}

.tool-result-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.tool-result-value {
  font-weight: 700;
  font-size: 1rem;
}

.tool-result-value.positive {
  color: var(--accent);
}

.tool-result-value.negative {
  color: var(--danger);
}

.tool-result-value.neutral {
  color: var(--star-filled);
}

.tool-result-big {
  text-align: center;
  padding: var(--space-lg) 0;
}

.tool-result-big .value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
}

.tool-result-big .label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: var(--space-xs);
}

/* Tools grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all 0.3s;
  text-decoration: none;
}

.tool-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

.tool-card h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.tool-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .tool-row {
    flex-direction: column;
    align-items: stretch;
  }
  .tool-row label {
    min-width: auto;
    margin-bottom: var(--space-xs);
  }
}

/* ========================================
   BENTO GRID — Infos rapides
   ======================================== */

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 14px;
  grid-template-areas:
    "rating  rating  founded license"
    "rating  rating  games   sports"
    "bonus   bonus   crypto  kyc"
    "payment payment app     odds";
}

/* --- Base item --- */

.bento__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}

.bento__item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* --- Grid areas --- */

.bento-a-rating  { grid-area: rating; }
.bento-a-founded { grid-area: founded; }
.bento-a-license { grid-area: license; }
.bento-a-games   { grid-area: games; }
.bento-a-sports  { grid-area: sports; }
.bento-a-bonus   { grid-area: bonus; }
.bento-a-crypto  { grid-area: crypto; }
.bento-a-kyc     { grid-area: kyc; }
.bento-a-payment { grid-area: payment; }
.bento-a-app     { grid-area: app; }
.bento-a-odds    { grid-area: odds; }

/* --- Rating card (large) --- */

.bento__item--rating {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.04) 100%);
  border-color: rgba(255, 215, 0, 0.2);
  padding: var(--space-xl);
}

.bento__big-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.bento__stars {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.bento__stars .star {
  font-size: 1.4rem;
}

/* --- Stat cards (small) --- */

.bento__item--stat {
  gap: var(--space-xs);
}

.bento__icon {
  font-size: 1.5rem;
  margin-bottom: 2px;
  opacity: 0.7;
}

.bento__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.bento__value--accent {
  color: var(--accent);
}

.bento__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.bento__sublabel {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* --- Bonus card (wide) --- */

.bento__item--bonus {
  flex-direction: row;
  gap: var(--space-md);
  text-align: left;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.04) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.bento__item--bonus .bento__icon {
  font-size: 2.2rem;
  opacity: 1;
  flex-shrink: 0;
}

.bento__item--bonus .bento__value {
  font-size: 1.15rem;
  line-height: 1.4;
}

/* --- Payment card (wide) --- */

.bento__item--payment {
  flex-direction: row;
  gap: var(--space-md);
  text-align: left;
}

.bento__item--payment .bento__icon {
  font-size: 2.2rem;
  opacity: 1;
  color: var(--accent);
  flex-shrink: 0;
}

.bento__item--payment .bento__value {
  font-size: 1.15rem;
}

/* --- Status badges --- */

.bento__item--status {
  gap: var(--space-xs);
  padding: var(--space-md);
}

.bento__status-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.bento__item--positive {
  border-color: rgba(0, 255, 136, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.06) 100%);
}

.bento__item--positive .bento__status-icon {
  color: var(--accent);
}

.bento__item--positive .bento__label {
  color: var(--accent);
}

.bento__item--warning {
  border-color: rgba(255, 152, 0, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 152, 0, 0.06) 100%);
}

.bento__item--warning .bento__status-icon {
  color: #ff9800;
}

.bento__item--warning .bento__label {
  color: #ff9800;
}

.bento__item--negative {
  border-color: rgba(255, 68, 68, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 68, 68, 0.06) 100%);
}

.bento__item--negative .bento__status-icon {
  color: var(--danger);
}

.bento__item--negative .bento__label {
  color: var(--danger);
}

/* --- Bento responsive --- */

@media (max-width: 900px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "rating  rating  rating"
      "founded games   sports"
      "license odds    ."
      "bonus   bonus   bonus"
      "crypto  kyc     app"
      "payment payment payment";
  }

  .bento__big-num {
    font-size: 4rem;
  }
}

@media (max-width: 560px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-template-areas:
      "rating  rating"
      "founded license"
      "games   sports"
      "bonus   bonus"
      "crypto  kyc"
      "payment payment"
      "app     odds";
  }

  .bento__item {
    padding: var(--space-md);
  }

  .bento__item--rating {
    padding: var(--space-lg);
  }

  .bento__big-num {
    font-size: 3.5rem;
  }

  .bento__value {
    font-size: 1.25rem;
  }

  .bento__item--bonus .bento__value,
  .bento__item--payment .bento__value {
    font-size: 1rem;
  }
}

/* --- Bento brand overrides --- */

.bk-branded .bento__item--rating {
  background: linear-gradient(135deg, var(--bk-bg-secondary) 0%, rgba(255, 215, 0, 0.06) 100%);
}

.bk-branded .bento__item--bonus {
  border-color: var(--bk-accent);
  box-shadow: 0 0 20px var(--bk-accent-glow);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bk-accent-glow) 100%);
}

.bk-branded .bento__item--positive {
  border-color: var(--bk-accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bk-accent-glow) 100%);
}

.bk-branded .bento__item--positive .bento__status-icon,
.bk-branded .bento__item--positive .bento__label {
  color: var(--bk-accent);
}

.bk-branded .bento__item--payment .bento__icon {
  color: var(--bk-accent);
}

.bk-branded .bento__value--accent {
  color: var(--bk-accent);
}

/* ========================================
   ODDS SECTION — Beginner-friendly
   ======================================== */

/* --- Odds Explanation Cards --- */

.odds-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.odds-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.odds-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.odds-card__header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.odds-card__icon {
  font-size: 1.5rem;
}

.odds-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.odds-card__example {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.odds-card__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.odds-card__val {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.odds-card__val--accent {
  color: var(--accent);
}

.odds-card__val--green {
  color: #4ade80;
}

.odds-card__val--red {
  color: var(--danger);
}

.odds-card__x {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.odds-card__tip {
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

.odds-card__tip strong {
  color: var(--text-primary);
}

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

/* (legacy odds-explain kept for compatibility) */
.odds-explain {
  display: flex;
  gap: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  align-items: flex-start;
}

.odds-explain__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.odds-explain__text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.odds-explain__text p:last-child {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.odds-explain__text strong {
  color: var(--text-primary);
}

/* --- Odds Ranking --- */

.odds-ranking {
  max-width: 650px;
  margin: 0 auto var(--space-xl);
}

.odds-ranking h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.odds-ranking__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.odds-rank {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s;
}

.odds-rank:hover {
  border-color: rgba(255,255,255,0.15);
}

.odds-rank--current {
  border-color: var(--accent);
  background: rgba(0,255,136,0.04);
}

.odds-rank__pos {
  font-size: 1.2rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.odds-rank__name {
  width: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.odds-rank--current .odds-rank__name {
  color: var(--accent);
}

.odds-rank__bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.odds-rank__bar {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent) 0%, #ffd700 60%, var(--danger) 100%);
  background-size: 200% 100%;
  transition: width 0.5s ease;
}

.odds-rank--current .odds-rank__bar {
  background: var(--accent);
}

.odds-rank__margin {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}

.odds-rank__separator {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  padding: 4px 0;
}

/* --- Odds Simulator --- */

.odds-sim {
  max-width: 750px;
  margin: 0 auto var(--space-xl);
}

.odds-sim h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

.odds-sim__grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.odds-sim__card {
  flex: 1;
  min-width: 120px;
  max-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

.odds-sim__card--current {
  border-color: var(--accent);
  background: rgba(0,255,136,0.04);
}

.odds-sim__card--avg {
  border-style: dashed;
  opacity: 0.6;
}

.odds-sim__logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}

.odds-sim__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.odds-sim__card--current .odds-sim__name {
  color: var(--accent);
}

.odds-sim__amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.odds-sim__margin {
  font-size: 0.7rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .odds-sim__grid {
    flex-wrap: wrap;
  }
  .odds-sim__card {
    min-width: 100px;
  }
}

/* --- Concrete example --- */

.odds-example {
  margin-bottom: var(--space-xl);
}

.odds-example h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.odds-example__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.odds-example__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.odds-example__bk {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.odds-example__odds {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.odds-example__result {
  font-size: 1rem;
  color: var(--text-secondary);
}

.odds-example__result strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.odds-example__margin {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.odds-example__item--ref {
  border-color: rgba(0, 255, 136, 0.3);
}

.odds-example__item--ref .odds-example__result strong {
  color: var(--accent);
}

.odds-example__item--ref .odds-example__margin {
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent);
}

.odds-example__item--current {
  border-color: rgba(255, 215, 0, 0.3);
}

.odds-example__item--current .odds-example__result strong {
  color: var(--star-filled);
}

.odds-example__item--current .odds-example__margin {
  background: rgba(255, 215, 0, 0.1);
  color: var(--star-filled);
}

.odds-example__item--bad {
  border-color: rgba(255, 68, 68, 0.2);
}

.odds-example__item--bad .odds-example__result strong {
  color: var(--danger);
}

.odds-example__item--bad .odds-example__margin {
  background: rgba(255, 68, 68, 0.1);
  color: var(--danger);
}

/* --- Odds tickets (betting slip style) --- */

.odds-tickets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.odds-ticket {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.odds-ticket__header {
  background: var(--bg-secondary);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--border);
}

.odds-ticket__sport {
  font-size: 1.3rem;
}

.odds-ticket__match {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.odds-ticket__league {
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 100%;
}

.odds-ticket__league strong {
  color: var(--accent);
}

.odds-ticket__bet {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.odds-ticket__bet strong {
  color: var(--text-primary);
}

.odds-ticket__rows {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.odds-ticket__row {
  display: grid;
  grid-template-columns: 90px 45px 1fr 60px;
  gap: var(--space-sm);
  align-items: center;
  padding: 6px 0;
}

.odds-ticket__row--current {
  background: rgba(255,255,255,0.02);
  margin: 0 calc(var(--space-lg) * -1);
  padding: 8px var(--space-lg);
  border-left: 3px solid var(--accent);
}

.odds-ticket__bk {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
}

a.odds-ticket__bk {
  color: var(--accent);
}

a.odds-ticket__bk:hover {
  text-decoration: underline;
}

.odds-ticket__bk--muted {
  color: var(--text-muted);
  font-weight: 400;
}

.odds-ticket__odds {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  text-align: center;
}

.odds-ticket__bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.odds-ticket__fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.8s ease-out;
}

.odds-ticket__fill--best {
  background: var(--accent);
}

.odds-ticket__fill--current {
  background: var(--star-filled);
}

.odds-ticket__fill--bad {
  background: var(--danger);
}

.odds-ticket__gain {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-align: right;
}

.odds-ticket__gain--best { color: var(--accent); }
.odds-ticket__gain--current { color: var(--star-filled); }
.odds-ticket__gain--bad { color: var(--danger); }

.odds-ticket__diff {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--border);
  text-align: center;
}

.odds-ticket__diff strong {
  color: var(--text-primary);
}

/* Branded ticket overrides */
.bk-branded .odds-ticket__row--current {
  border-left-color: var(--bk-accent);
}

.bk-branded .odds-ticket__fill--current {
  background: var(--bk-accent);
}

.bk-branded .odds-ticket__gain--current {
  color: var(--bk-accent);
}

/* Mobile tickets */
@media (max-width: 768px) {
  .odds-tickets {
    grid-template-columns: 1fr;
  }

  .odds-ticket__row {
    grid-template-columns: 80px 40px 1fr 50px;
  }

  .odds-ticket__bk {
    font-size: 0.72rem;
  }
}

/* --- Summary row --- */

.odds-summary {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.odds-summary__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- Brand overrides --- */

.bk-branded .odds-gauge__marker-dot--current {
  border-color: var(--bk-accent);
  background: var(--bk-accent);
  box-shadow: 0 0 12px var(--bk-accent-glow);
}

.bk-branded .odds-gauge__marker-label--current {
  color: var(--bk-accent);
}

.bk-branded .odds-example__item--current {
  border-color: var(--bk-accent);
}

.bk-branded .odds-example__item--current .odds-example__result strong {
  color: var(--bk-accent);
}

/* --- Mobile --- */

@media (max-width: 768px) {
  .odds-explain {
    flex-direction: column;
    gap: var(--space-md);
  }

  .odds-example__grid {
    grid-template-columns: 1fr;
  }

  .odds-gauge__marker-label {
    font-size: 0.6rem;
  }

  .odds-summary {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
}

/* ========================================
   INTERACTIVE WIDGETS
   ======================================== */

.widget-intro {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
  max-width: 700px;
}

/* ===== TIMELINE (horizontal) ===== */

.htl {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding-bottom: var(--space-md);
}

.htl::-webkit-scrollbar {
  height: 4px;
}

.htl::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-full);
}

.htl__track {
  display: flex;
  gap: 0;
  position: relative;
  min-width: max-content;
  padding-top: 30px;
}

/* Horizontal line through dots */
.htl__track::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border));
}

.htl__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  flex-shrink: 0;
  position: relative;
}

.htl__year {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.htl__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 8px var(--accent-glow);
  z-index: 1;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.htl__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  text-align: center;
  width: 140px;
  transition: all 0.3s;
}

.htl__card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.htl__icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}

.htl__text {
  color: var(--text-secondary);
  font-size: 0.7rem;
  line-height: 1.4;
}

/* Brand overrides */
.bk-branded .htl__track::before {
  background: linear-gradient(90deg, var(--bk-accent), var(--border));
}

.bk-branded .htl__dot {
  background: var(--bk-accent);
  box-shadow: 0 0 8px var(--bk-accent-glow);
}

.bk-branded .htl__year {
  color: var(--bk-accent);
}

.bk-branded .htl__card:hover {
  border-color: var(--bk-accent);
  box-shadow: 0 0 16px var(--bk-accent-glow);
}

/* ===== TRUST SCORE (Radar) ===== */

.trust-widget {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.trust-radar {
  display: flex;
  justify-content: center;
}

.trust-radar canvas {
  max-width: 100%;
}

.trust-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.trust-row {
  display: grid;
  grid-template-columns: 120px 50px 1fr;
  gap: var(--space-sm);
  align-items: center;
}

.trust-row__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-row__value {
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.trust-row__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.trust-row__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: var(--radius-full);
  transition: width 0.8s ease-out;
}

/* Trustpilot external score */
.trust-external {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.trust-external__score {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.trust-external__num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #00B67A;
}

.trust-external__meta {
  display: flex;
  flex-direction: column;
}

.trust-external__source {
  font-size: 0.8rem;
  font-weight: 700;
  color: #00B67A;
}

.trust-external__count {
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: width 0.8s ease-out;
}

@media (max-width: 768px) {
  .trust-widget {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .trust-radar {
    order: -1;
  }
}

/* ===== VIP CALCULATOR ===== */

.vip-calc__input {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.vip-calc__input label {
  display: block;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.vip-calc__slider {
  -webkit-appearance: none;
  width: 100%;
  max-width: 600px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border);
  outline: none;
  transition: background 0.2s;
}

.vip-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 12px var(--accent-glow);
}

.vip-calc__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px var(--accent-glow);
}

.vip-calc__amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: var(--space-md);
}

.vip-calc__results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.vip-calc__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.vip-calc__card--level {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--accent-glow) 100%);
}

.vip-calc__card--rake {
  border-color: var(--star-filled);
}

.vip-calc__card-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.vip-calc__card-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}

.vip-calc__card-value--big {
  font-size: 2rem;
  color: var(--accent);
}

.vip-calc__table {
  overflow-x: auto;
}

.vip-calc__table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.vip-calc__table th {
  background: var(--bg-secondary);
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}

.vip-calc__table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.vip-calc__table tr {
  transition: all 0.3s;
}

.vip-calc__table tr.vip-active {
  background: var(--accent-glow);
  border-left: 3px solid var(--accent);
}

.vip-calc__table tr.vip-active td {
  color: var(--text-primary);
}

/* ===== CRYPTO FEES TABLE ===== */

.crypto-table {
  overflow-x: auto;
}

.crypto-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.crypto-table th {
  background: var(--bg-card);
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--border);
}

.crypto-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.crypto-table tr:hover td {
  background: var(--glass-bg);
}

.crypto-verdict {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.crypto-verdict--best {
  background: rgba(0, 255, 136, 0.12);
  color: var(--accent);
}

.crypto-verdict--good {
  background: rgba(0, 255, 136, 0.06);
  color: #66ffaa;
}

.crypto-verdict--ok {
  background: rgba(255, 215, 0, 0.1);
  color: var(--star-filled);
}

.crypto-verdict--avoid {
  background: rgba(255, 68, 68, 0.1);
  color: var(--danger);
}

/* ===== RESTRICTED COUNTRIES ===== */

.countries-widget {
  text-align: center;
}

.countries-map {
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  overflow: hidden;
}

.world-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

.world-map__svg .wm-land {
  fill: rgba(0, 255, 136, 0.18);
  stroke: rgba(10, 10, 15, 0.7);
  stroke-width: 0.3;
  transition: fill 0.3s, filter 0.3s;
  cursor: pointer;
}

.world-map__svg .wm-land:hover {
  fill: rgba(0, 255, 136, 0.35);
  filter: brightness(1.3);
}

.world-map__svg .wm-restricted {
  fill: rgba(255, 68, 68, 0.45) !important;
}

.world-map__svg .wm-restricted:hover {
  fill: rgba(255, 68, 68, 0.65) !important;
}

.bk-branded .world-map__svg .wm-land {
  fill: rgba(0, 231, 1, 0.15);
}

.bk-branded .world-map__svg .wm-land:hover {
  fill: rgba(0, 231, 1, 0.3);
}

.countries-legend {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.countries-legend__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.countries-legend__item::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.countries-legend__item--ok::before {
  background: rgba(0, 255, 136, 0.35);
  border: 1px solid rgba(0, 255, 136, 0.5);
}

.countries-legend__item--restricted::before {
  background: rgba(255, 68, 68, 0.5);
  border: 1px solid rgba(255, 68, 68, 0.6);
}

.countries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
}

.country-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.country-tag--restricted {
  border-color: rgba(255, 68, 68, 0.4);
  color: var(--danger);
  background: rgba(255, 68, 68, 0.08);
}

/* ===== VS COMPARATOR ===== */

.vs-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
  padding-bottom: var(--space-xs);
}

.vs-tab {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.vs-tab:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.vs-tab--active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.vs-panel {
  display: none;
}

.vs-panel--active {
  display: block;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1px;
  background: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.vs-col {
  background: var(--bg-card);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.vs-col--left {
  justify-content: flex-end;
  text-align: right;
}

.vs-col--label {
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 100px;
  background: var(--bg-secondary);
}

.vs-col--right {
  justify-content: flex-start;
}

.vs-col--winner {
  color: var(--accent);
  font-weight: 700;
}

.vs-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
}

.vs-header--vs {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-muted);
  justify-content: center;
}

.vs-logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.vs-verdict {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .vs-col {
    padding: var(--space-sm);
    font-size: 0.8rem;
  }
  .vs-col--label {
    min-width: 70px;
    font-size: 0.7rem;
  }
  .vs-logo {
    width: 24px;
    height: 24px;
  }
}

/* ===== Widget brand overrides ===== */

/* (old vertical timeline overrides removed — now in htl section) */

.bk-branded .trust-row__fill {
  background: linear-gradient(90deg, var(--bk-accent), var(--bk-accent-hover));
}

.bk-branded .vip-calc__slider::-webkit-slider-thumb {
  background: var(--bk-accent);
  box-shadow: 0 0 12px var(--bk-accent-glow);
}

.bk-branded .vip-calc__slider::-moz-range-thumb {
  background: var(--bk-accent);
  box-shadow: 0 0 12px var(--bk-accent-glow);
}

.bk-branded .vip-calc__card--level {
  border-color: var(--bk-accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bk-accent-glow) 100%);
}

.bk-branded .vip-calc__card-value--big {
  color: var(--bk-accent);
}

.bk-branded .vip-calc__table tr.vip-active {
  background: var(--bk-accent-glow);
  border-left-color: var(--bk-accent);
}

.bk-branded .vs-tab--active {
  border-color: var(--bk-accent);
  color: var(--bk-accent);
  background: var(--bk-accent-glow);
}

.bk-branded .vs-col--winner {
  color: var(--bk-accent);
}

/* ========================================
   BRANDED BOOKMAKER PAGES
   ======================================== */

/* ===== Brand color overrides ===== */

.bk-branded .bk-hero--branded {
  background: linear-gradient(180deg, var(--bk-bg) 0%, var(--bk-bg-secondary) 50%, var(--bg-primary) 100%);
}

.bk-branded .bk-hero__logo-wrap {
  background: var(--bk-bg-secondary);
  border-color: rgba(255, 255, 255, 0.1);
}

.bk-branded .bk-hero__bonus {
  color: var(--bk-accent);
}

.bk-branded .tag--crypto {
  border-color: var(--bk-accent);
  color: var(--bk-accent);
  background: var(--bk-accent-glow);
}

.bk-branded .tag--kyc {
  border-color: var(--bk-text-muted);
  color: var(--bk-text-muted);
}

.bk-branded .bk-scores {
  background: var(--bk-bg);
}

.bk-branded .score-item__fill {
  background: linear-gradient(90deg, var(--bk-accent), var(--bk-accent-hover));
  box-shadow: 0 0 12px var(--bk-accent-glow);
}

.bk-branded .scores-overall__number span {
  color: var(--bk-accent);
}

.bk-branded .bonus-card {
  border-color: var(--bk-accent);
  box-shadow: 0 0 30px var(--bk-accent-glow);
}

.bk-branded .bonus-card__amount {
  color: var(--bk-accent);
}

.bk-branded .step__num {
  background: var(--bk-accent);
}

.bk-branded .review-pros h3 {
  color: var(--bk-accent);
}

.bk-branded .review-pros li::before {
  color: var(--bk-accent);
}

.bk-branded .cta-btn--primary {
  background: var(--bk-accent);
}

.bk-branded .cta-btn--primary:hover {
  background: var(--bk-accent-hover);
  box-shadow: 0 0 20px var(--bk-accent-glow);
}

.bk-branded .bk-toc__link:hover,
.bk-branded .bk-toc__link.active {
  color: var(--bk-accent);
  border-color: var(--bk-accent);
}

.bk-branded .faq-item summary::after {
  color: var(--bk-accent);
}

.bk-branded .bk-content--rich h2 {
  border-left-color: var(--bk-accent);
}

.bk-branded .bk-content--rich h3::before {
  color: var(--bk-accent);
}

.bk-branded .bk-content--rich blockquote {
  border-left-color: var(--bk-accent);
  background: var(--bk-accent-glow);
}

.bk-branded .bk-content--rich strong {
  color: var(--bk-accent);
}

/* ===== Hero — Conversion-focused ===== */

.bk-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.bk-hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.bk-hero__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.bk-hero__logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.bk-hero__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.bk-hero__name {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 4px;
}

.bk-hero__h1-sub {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: middle;
  margin-left: var(--space-sm);
}

.bk-hero__tagline {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Bonus box */
.bk-hero__bonus-box {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 0 24px var(--accent-glow);
}

.bk-hero__bonus-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* Visual bonus layout: "10% CASHBACK à vie" */
.bk-hero__bonus-visual {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.bk-hero__bonus-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.bk-hero__bonus-right {
  display: flex;
  flex-direction: column;
}

.bk-hero__bonus-highlight {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bk-hero__bonus-suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
}

.bk-hero__bonus-note {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Fallback text bonus */
.bk-hero__bonus-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.3;
}

.bk-hero__bonus-code {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: var(--space-xs) var(--space-md);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.bk-hero__bonus-code strong {
  color: var(--accent);
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* ===== Hero Bonus Badge ===== */
.hero-bonus {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.hero-bonus__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-bonus__value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ===== Coupon ===== */
.coupon {
  position: relative;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
}

.coupon__scissors {
  position: absolute;
  top: -12px;
  left: 20px;
  font-size: 1.1rem;
  background: var(--bg-primary);
  padding: 0 6px;
  color: var(--text-muted);
  transform: rotate(-45deg);
}

.bk-branded .coupon__scissors {
  background: var(--bk-bg, var(--bg-primary));
}

.coupon__body {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.coupon__code-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.coupon__code {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding: 6px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  user-select: all;
}

.coupon__copy {
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 60px;
  text-align: center;
}

.coupon__copy:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

/* ===== Hero CTA Row ===== */
.hero-cta-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.hero-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s;
}

.hero-cta-btn:hover {
  background: var(--cta-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--cta-glow, rgba(0,200,100,0.2));
}

.hero-cta-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.hero-cta-btn:hover svg {
  transform: translateX(3px);
}

.hero-app-row {
  display: flex;
  gap: 6px;
}

.hero-app-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.hero-app-btn:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.hero-app-btn svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.hero-app-btn--off {
  opacity: 0.3;
  pointer-events: none;
}

/* CTA area */
.bk-hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Tags */
.bk-hero__tags {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

/* Highlights */
.bk-hero__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.bk-hero__hl {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bk-hero__hl-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* RIGHT: Mockup */
.bk-hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bk-hero__mockup {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background: var(--bg-card);
}

.bk-hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.bk-hero__mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.bk-hero__mockup-dot:nth-child(1) { background: #ff5f57; }
.bk-hero__mockup-dot:nth-child(2) { background: #ffbd2e; }
.bk-hero__mockup-dot:nth-child(3) { background: #28ca41; }

.bk-hero__mockup-url {
  margin-left: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  flex: 1;
  text-align: center;
}

.bk-hero__screenshot {
  width: 100%;
  display: block;
}

.bk-hero__placeholder {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
}

.bk-hero__placeholder-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.3;
}

/* ===== Quick Highlights Strip ===== */

.bk-highlights {
  padding: var(--space-lg) 0;
}

.hl-strip {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.hl-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}

.hl-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.hl-card__icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.hl-card__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hl-strip {
    flex-direction: column;
  }
}

/* ===== Casino impulse effects ===== */

/* Glow pulse on bonus box */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px var(--accent-glow); }
}

.bk-hero__bonus-box {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Shimmer effect on CTA */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Shimmer effect on hero branded CTA */
/* Bento: vibrant numbers */
.bento__big-num {
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.bento__value--accent {
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Bento: hover glow on cards */
.bento__item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px var(--accent-glow);
}

.bento__item--bonus:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 30px var(--accent-glow);
}

/* Bento: status badges pulse */
.bento__item--positive .bento__status-icon {
  text-shadow: 0 0 12px var(--accent);
}

.bento__item--negative .bento__status-icon {
  text-shadow: 0 0 12px var(--danger);
}

.bento__item--warning .bento__status-icon {
  text-shadow: 0 0 12px #ff9800;
}

/* Hero rating glow */
.bk-hero__rating .rating-score {
  text-shadow: 0 0 16px rgba(255, 215, 0, 0.4);
}

/* Bonus value glow */
.bk-hero__bonus-value {
  text-shadow: 0 0 24px var(--accent-glow);
}

/* CTA buttons alignment in hero */
/* Odds example: winning card glow */
.odds-example__item--ref {
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.odds-example__item--ref:hover {
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

/* VS comparator: winner glow */
.vs-col--winner {
  text-shadow: 0 0 8px var(--accent-glow);
}

/* Branded hero overrides */
@keyframes glowPulseBrand {
  0%, 100% { box-shadow: 0 0 20px var(--bk-accent-glow); }
  50% { box-shadow: 0 0 40px var(--bk-accent-glow), 0 0 60px var(--bk-accent-glow); }
}

.bk-branded .bk-hero__bonus-box {
  border-color: var(--bk-accent);
  animation: glowPulseBrand 3s ease-in-out infinite;
}

.bk-branded .bk-hero__bonus-value {
  text-shadow: 0 0 24px var(--bk-accent-glow);
}

.bk-branded .bento__item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px var(--bk-accent-glow);
}

.bk-branded .bento__item--bonus:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 30px var(--bk-accent-glow);
}

.bk-branded .bento__value--accent {
  text-shadow: 0 0 20px var(--bk-accent-glow);
}

.bk-branded .bento__item--positive .bento__status-icon {
  text-shadow: 0 0 12px var(--bk-accent);
}

.bk-branded .bk-hero__bonus-value {
  color: var(--bk-accent);
}

.bk-branded .bk-hero__bonus-code strong {
  color: var(--bk-accent);
}

.bk-branded .bk-hero__mockup {
  border-color: rgba(255,255,255,0.1);
}

.bk-branded .bk-hero__placeholder {
  background: linear-gradient(135deg, var(--bk-bg) 0%, var(--bk-bg-secondary) 100%);
}

/* Mobile hero */
@media (max-width: 900px) {
  .bk-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .bk-hero__right {
    order: 1;
  }

  .bk-hero__mockup {
    max-width: 100%;
    max-height: 250px;
    overflow: hidden;
  }

  .hero-cta-row {
    flex-wrap: nowrap;
  }

  .hero-cta-btn {
    font-size: 0.95rem;
    padding: 14px 20px;
  }

  .hero-app-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .bk-hero__highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .bk-hero__header {
    flex-direction: column;
    text-align: center;
  }

  .bk-hero__tags {
    justify-content: center;
  }

  .bk-hero__highlights {
    gap: var(--space-xs);
  }
}

/* ===== Score card ===== */

.bk-scores {
  background: var(--bg-secondary);
  padding: var(--space-xl) 0;
}

.bk-scores h2 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.scores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md) var(--space-xl);
  max-width: 900px;
  margin: 0 auto var(--space-xl);
}

.score-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.score-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score-item__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.score-item__value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.score-item__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.score-item__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 1s ease-out;
}

.scores-overall {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.scores-overall__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.scores-overall__number span {
  color: var(--star-filled);
}

.scores-overall__label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: var(--space-xs);
}

/* ===== Table of Contents (sticky nav) ===== */

.bk-toc {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-sm) 0;
}

.bk-toc__list {
  display: flex;
  gap: var(--space-xs);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-xs) 0;
}

.bk-toc__list::-webkit-scrollbar {
  display: none;
}

.bk-toc__link {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.bk-toc__link:hover,
.bk-toc__link.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ===== Rich editorial content ===== */

.bk-content--rich {
  max-width: 860px;
  margin: 0 auto;
}

.bk-content--rich h2 {
  font-size: 1.6rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  border-left: 4px solid var(--accent);
  line-height: 1.3;
}

.bk-content--rich h2:first-child {
  margin-top: 0;
}

.bk-content--rich h3 {
  font-size: 1.15rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  position: relative;
  padding-left: var(--space-lg);
}

.bk-content--rich h3::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.1rem;
}

.bk-content--rich h4 {
  font-size: 1rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  font-weight: 600;
}

.bk-content--rich p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
  font-size: 0.95rem;
}

.bk-content--rich ul,
.bk-content--rich ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.bk-content--rich li {
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  list-style: disc;
  line-height: 1.7;
}

.bk-content--rich ol li {
  list-style: decimal;
}

.bk-content--rich strong {
  color: var(--accent);
  font-weight: 600;
}

.bk-content--rich blockquote {
  border-left: 3px solid var(--accent);
  background: var(--accent-glow);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.bk-content--rich blockquote p {
  color: var(--text-primary);
  margin-bottom: 0;
  font-style: italic;
}

.bk-content--rich table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.9rem;
}

.bk-content--rich table th {
  background: var(--bg-card);
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bk-content--rich table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.bk-content--rich table tr:hover td {
  background: var(--glass-bg);
}

.bk-content--rich hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-xl) 0;
}

/* ===== KYC tag ===== */

.tag--kyc {
  border-color: #ff9800;
  color: #ff9800;
}

/* ===== Mobile responsive for new elements ===== */

@media (max-width: 768px) {
  .bk-hero__logo-wrap {
    width: 100px;
    height: 100px;
  }

  .bk-hero__meta {
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
  }

  .bk-hero__bonus {
    font-size: 0.95rem;
  }

  .scores-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .bk-toc__link {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .bk-content--rich h2 {
    font-size: 1.3rem;
  }

  .bk-content--rich h3 {
    font-size: 1.05rem;
  }

  .bk-content--rich table {
    display: block;
    overflow-x: auto;
  }
}

/* ========== SUBPAGES ========== */

.subpage__hero {
  padding: var(--space-xl) 0 var(--space-lg);
}

.subpage__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.subpage__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.subpage__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.subpage__logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
}

.subpage__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.subpage__subtitle {
  color: var(--text-secondary);
  margin-top: 4px;
  font-size: 1rem;
}

.subpage__cta-bar {
  padding: var(--space-md) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.subpage__cta-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.coupon--inline {
  flex: 1;
}

.subpage__content {
  padding: var(--space-xl) 0;
}

.subpage__bottom-cta {
  padding: var(--space-lg) 0;
  background: var(--bg-secondary);
}

.subpage__bottom-cta .subpage__cta-inner {
  justify-content: center;
}

.subpage__nav {
  padding: var(--space-lg) 0;
}

.subpage__back {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

@media (max-width: 768px) {
  .subpage__header {
    flex-direction: column;
    text-align: center;
  }

  .subpage__title {
    font-size: 1.5rem;
  }

  .subpage__cta-inner {
    flex-direction: column;
  }
}
