/* =============================================
   OnlineSlotsCanada.ai — Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:   #f5c518;
  --gold2:  #e09c00;
  --red:    #e63946;
  --dark:   #0d0f14;
  --dark2:  #13161e;
  --dark3:  #1a1e2a;
  --card:   #1e2330;
  --border: rgba(255,255,255,.08);
  --text:   #e8eaf0;
  --muted:  #8b90a0;
  --radius: 14px;
  --shadow: 0 8px 40px rgba(0,0,0,.5);
  --grad:   linear-gradient(135deg, var(--gold), var(--red));
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-dark { background: var(--dark2); }
.section-accent { background: var(--dark3); }

/* --- Gradient text --- */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  border: none;
}
.btn-primary:hover { filter: brightness(1.15); transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav {
  background: var(--grad);
  color: #fff;
  padding: 9px 22px;
  font-size: .88rem;
  border: none;
}
.btn-large { padding: 16px 40px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,15,20,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.6); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .05em;
}
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu .btn { margin-top: 12px; width: 100%; }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 60px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,197,24,.12) 0%, transparent 70%),
              var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.reel {
  position: absolute;
  width: 180px;
  height: 600px;
  border-radius: 24px;
  opacity: .04;
  background: repeating-linear-gradient(
    180deg,
    var(--gold) 0px,
    var(--gold) 1px,
    transparent 1px,
    transparent 120px
  );
  animation: reelSpin 8s linear infinite;
}
.reel-1 { left: 10%; top: -100px; animation-delay: 0s; }
.reel-2 { left: 50%; top: -200px; animation-delay: -3s; }
.reel-3 { right: 10%; top: -50px; animation-delay: -6s; }

@keyframes reelSpin {
  from { transform: translateY(0); }
  to   { transform: translateY(120px); }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.3);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInDown .6s ease both;
}

#hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: .02em;
  margin-bottom: 24px;
  animation: fadeInDown .7s .1s ease both;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 36px;
  animation: fadeInDown .7s .2s ease both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInDown .7s .3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
  animation: fadeInDown .7s .4s ease both;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-item span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.trust-item small {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* =============================================
   TICKER
   ============================================= */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  color: #000;
  padding: 12px 0;
  margin: 48px 0 0;
}

@media (max-width: 600px) {
  #hero {
    padding-top: 30px;
  }
  .ticker-wrap {
    margin: 32px 0 0;
  }
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: .88rem;
  font-weight: 600;
}
.ticker-track span { padding: 0 8px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.25);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .03em;
  margin-bottom: 16px;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
}

/* =============================================
   FEATURES
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  opacity: 0;
  transform: translateY(24px);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.feature-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; text-align: center; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; text-align: center; }
.feature-card p  { color: var(--muted); font-size: .93rem; }

/* =============================================
   CASINO CARDS
   ============================================= */
.casino-list { display: flex; flex-direction: column; gap: 16px; }

.casino-card {
  display: grid;
  grid-template-columns: 48px 80px 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.casino-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--grad);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity .25s;
}
.casino-card:hover { border-color: rgba(245,197,24,.25); transform: translateX(4px); }
.casino-card:hover::before { opacity: 1; }

.casino-rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
}
.casino-logo-wrap { display: flex; justify-content: center; }
.casino-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: .05em;
}

.casino-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.casino-stars { font-size: .9rem; color: var(--gold); margin-bottom: 8px; }
.casino-stars span { color: var(--muted); font-size: .82rem; }
.casino-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.casino-tags li {
  padding: 3px 10px;
  background: rgba(255,255,255,.05);
  border-radius: 100px;
  font-size: .78rem;
  color: var(--muted);
}

.casino-bonus {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 160px;
}
.bonus-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
}
.bonus-label { font-size: .8rem; color: var(--muted); margin-bottom: 2px; }
.tac { font-size: .7rem; color: var(--muted); opacity: .6; max-width: 160px; text-align: right; }

.see-more-wrap { text-align: center; margin-top: 40px; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  padding: 40px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p  { color: var(--muted); font-size: .9rem; }
.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: var(--border);
  align-self: center;
  margin: 0;
  position: relative;
}
.step-connector::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--muted);
  background: var(--dark);
  padding: 0 4px;
  font-size: .9rem;
}

/* =============================================
   BONUS CARDS
   ============================================= */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, border-color .25s;
}
.bonus-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,.3); }
.bonus-card-featured {
  border-color: rgba(245,197,24,.4);
  background: linear-gradient(135deg, rgba(245,197,24,.08), var(--card));
}
.bonus-badge {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: flex-start;
}
.bonus-badge-hot { background: rgba(230,57,70,.18); color: var(--red); }
.bonus-card h3 { font-size: 1.3rem; font-weight: 700; }
.bonus-card p  { color: var(--muted); font-size: .88rem; flex: 1; }
.bonus-casino { font-size: .8rem; color: var(--gold); font-weight: 600; }

/* =============================================
   SLOTS GRID
   ============================================= */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.slot-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: transform .25s, border-color .25s;
}
.slot-card:hover { transform: translateX(4px); border-color: rgba(245,197,24,.25); }
.slot-thumb {
  flex: 0 0 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slot-thumb-icon { font-size: 2rem; }
.slot-info { flex: 1; }
.slot-info h4 { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.slot-provider { font-size: .78rem; color: var(--muted); display: block; margin-bottom: 8px; }
.slot-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.slot-rtp {
  padding: 2px 8px;
  background: rgba(255,255,255,.05);
  border-radius: 4px;
  font-size: .74rem;
  color: var(--muted);
}
.slot-vol {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .74rem;
  font-weight: 600;
}
.vol-high  { background: rgba(230,57,70,.18); color: #ff6b6b; }
.vol-med   { background: rgba(245,197,24,.18); color: var(--gold); }
.vol-low   { background: rgba(106,222,137,.18); color: #6ae389; }

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section { background: var(--dark); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.trust-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.trust-icon { font-size: 2.6rem; margin-bottom: 20px; }
.trust-block h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.trust-block p  { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.rg-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.rg-badge {
  padding: 4px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(245,197,24,.3); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron {
  flex: 0 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform .3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { color: var(--muted); font-size: .92rem; }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  padding: 96px 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(245,197,24,.12) 0%, transparent 70%),
              var(--dark);
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: .03em;
  margin-bottom: 14px;
}
.cta-strip p { color: var(--muted); margin-bottom: 36px; font-size: 1.05rem; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p { color: var(--muted); font-size: .88rem; margin-top: 16px; max-width: 280px; line-height: 1.7; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.disclaimer {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: .8;
}
.disclaimer a { color: var(--gold); text-decoration: underline; }
.copyright { font-size: .78rem; color: var(--muted); opacity: .5; }
.copyright a { color: inherit; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .casino-card {
    grid-template-columns: 40px 60px 1fr;
    grid-template-rows: auto auto;
  }
  .casino-bonus {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  .tac { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 30px; align-self: center; }
  .step-connector::after { content: '↓'; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .badge { margin-top: 32px; }
  .hero-trust { gap: 20px; }
  .casino-card { padding: 18px 16px; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .slot-types-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .bc {
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 12px 12px;
    padding: 16px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .bc-logo-wrap { grid-column: 1; grid-row: 1; }
  .bc-info      { grid-column: 2; grid-row: 1; align-self: center; min-width: 0; }
  .bc-info h4   { font-size: .92rem; word-break: break-word; }
  .bc-offer     { grid-column: 1 / -1; grid-row: 2; font-size: .95rem; }
  .bc-stats     { grid-column: 1 / -1; grid-row: 3; flex-direction: column; gap: 8px; }
  .bc-actions   { grid-column: 1 / -1; grid-row: 4; flex-direction: column; gap: 8px; width: 100%; }
  .bc-detail    { grid-column: 1 / -1; }
  .bc-actions .btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    font-size: .95rem;
    border-radius: 100px;
    justify-content: center;
    box-sizing: border-box;
  }
  .btn-more {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: .88rem;
    border-radius: 100px;
    box-sizing: border-box;
  }

}

/* =============================================
   EVAL NOTE
   ============================================= */
.eval-note {
  margin-top: 40px;
  padding: 24px 28px;
  background: rgba(245,197,24,.06);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: var(--radius);
}
.eval-note p { color: var(--muted); font-size: .92rem; line-height: 1.75; }
.eval-note strong { color: var(--text); }

/* =============================================
   RED FLAGS LIST
   ============================================= */
.red-flags-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.red-flags-list li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  font-size: .9rem;
}
.red-flags-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.table-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.table-note strong { color: var(--text); }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.comparison-table thead tr {
  background: rgba(245,197,24,.08);
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(255,255,255,.02); }
.comparison-table .row-highlight { background: rgba(245,197,24,.04); }
.comparison-table .yes { color: #6ae389; font-weight: 700; font-size: 1rem; text-align: center; }
.comparison-table .no  { color: #ff6b6b; font-weight: 700; font-size: 1rem; text-align: center; }
.comparison-table .td-cta { text-align: center; white-space: nowrap; }

/* Table → cards before a scrollbar would appear */
@media (max-width: 1100px) {
  .table-wrap { border: none; background: transparent; }
  .comparison-table thead { display: none; }
  .comparison-table tbody { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .comparison-table tr,
  .comparison-table td { display: block; width: 100%; }
  .comparison-table tr {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .comparison-table tr.row-highlight {
    border-color: rgba(245,197,24,.35);
  }
  .comparison-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
    text-align: right;
  }
  .comparison-table td:last-child { border-bottom: none; }
  .comparison-table td::before {
    content: attr(data-label);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: left;
    flex: 0 0 auto;
    margin-right: 12px;
  }
  .comparison-table td[data-label="Site"] {
    background: rgba(245,197,24,.06);
    font-size: .95rem;
    padding: 14px 16px;
  }
  .comparison-table td[data-label="Site"]::before { display: none; }
  .comparison-table td[data-label="Site"] { justify-content: flex-start; }
  .comparison-table .td-cta {
    justify-content: center;
    padding: 14px 16px;
    border-bottom: none;
  }
  .comparison-table .td-cta::before { display: none; }
  .comparison-table .td-cta .btn-play-now {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: .88rem;
  }
}

@media (min-width: 601px) and (max-width: 1100px) {
  .comparison-table tbody tr:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .comparison-table tbody { grid-template-columns: 1fr; }
  .comparison-table tr { margin-bottom: 0; }
}

.btn-play-now {
  display: inline-block;
  padding: 8px 18px;
  background: var(--grad);
  color: #000;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
}
.btn-play-now:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* =============================================
   BREAKDOWN CARDS
   ============================================= */
.breakdowns { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; width: 100%; }
.breakdowns-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
/* =============================================
   BREAKDOWN CASINO CARDS (.bc)
   ============================================= */
.bc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, .95fr) 140px;
  align-items: center;
  gap: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.bc:hover { border-color: rgba(245,197,24,.25); box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.bc-featured { border-color: rgba(245,197,24,.35); background: linear-gradient(135deg,rgba(245,197,24,.05),var(--card)); }

/* Logo */
.bc-logo-wrap { position: relative; display: flex; justify-content: center; }
.bc-logo {
  width: 80px; height: 80px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.bc-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.bc-rank {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 1px;
}
.bc-rank-leaf { font-size: .85rem; line-height: 1; }
.bc-rank {
  font-size: .72rem;
  font-weight: 800;
  color: var(--gold);
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3px 6px;
}

/* Info */
.bc-badge {
  display: inline-flex;
  padding: 3px 10px;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.3);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  max-width: 100%;
  line-height: 1.25;
  white-space: normal;
}
.bc-info h4 { font-size: .97rem; font-weight: 700; margin-bottom: 2px; }
.bc-sub { font-size: .78rem; color: var(--muted); margin-bottom: 4px; }
.bc-stars { font-size: .82rem; color: var(--gold); }
.bc-stars span { color: var(--muted); font-size: .76rem; }

/* Offer */
.bc-offer {
  font-size: .93rem;
  font-weight: 600;
  color: #4ade80;
  line-height: 1.4;
}

/* Stats */
.bc-stats { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.bc-stats li { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.bc-check {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: #fff;
  font-weight: 700;
}

/* Actions */
.bc-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.bc-actions .btn { width: 100%; justify-content: center; }
.btn-more {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  width: 100%;
}
.btn-more:hover { border-color: var(--gold); color: var(--gold); }

/* Expandable detail */
.bc-detail {
  grid-column: 1 / -1;
  display: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}
.bc-detail.open { display: block; }
.bc-detail p { color: var(--muted); font-size: .88rem; line-height: 1.75; margin-bottom: 8px; }
.bc-detail small { font-size: .72rem; color: var(--muted); opacity: .5; }

.key-takeaways {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.key-takeaways h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--gold); }
.key-takeaways p { color: var(--muted); font-size: .9rem; line-height: 1.75; }

/* =============================================
   SLOT TYPES
   ============================================= */
.sub-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.sub-intro { color: var(--muted); margin-bottom: 28px; }

.slot-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.slot-type-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s, border-color .25s;
}
.slot-type-card:hover { transform: translateY(-3px); border-color: rgba(245,197,24,.3); }
.slot-type-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; text-align: center; }
.slot-type-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; text-align: center; }
.slot-type-card p { color: var(--muted); font-size: .88rem; }

/* =============================================
   PAYMENT GRID
   ============================================= */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.payment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s, border-color .25s;
}
.payment-card:hover { transform: translateY(-3px); border-color: rgba(245,197,24,.3); }
.payment-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; text-align: center; }
.payment-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; text-align: center; }
.payment-card p { color: var(--muted); font-size: .88rem; }

/* =============================================
   LEGAL SECTION
   ============================================= */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 24px;
}
.legal-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.legal-block h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
.legal-block p  { color: var(--muted); font-size: .9rem; line-height: 1.8; margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block strong { color: var(--text); }
.legal-block-highlight { border-color: rgba(245,197,24,.3); background: linear-gradient(135deg,rgba(245,197,24,.05),var(--card)); }
.legal-block-support { border-color: rgba(106,222,137,.2); }

.verify-list, .support-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 0;
}
.verify-list li, .support-list li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}
.verify-list li::before { content: '✓'; position: absolute; left: 0; color: #6ae389; font-weight: 700; }
.support-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }
.verify-list strong, .support-list strong { color: var(--text); }
.support-note { margin-top: 16px !important; font-style: italic; }

/* =============================================
   VERDICT SECTION
   ============================================= */
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.verdict-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color .25s;
}
.verdict-item:hover { border-color: rgba(245,197,24,.25); }
.verdict-icon { font-size: 1.8rem; flex: 0 0 auto; }
.verdict-item strong { display: block; font-size: .95rem; margin-bottom: 6px; }
.verdict-item p { color: var(--muted); font-size: .87rem; margin: 0; }
.verdict-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.verdict-note p { color: var(--muted); font-size: .92rem; margin-bottom: 24px; }
.verdict-note strong { color: var(--text); }

@media (max-width: 1100px) {
  .bc {
    grid-template-columns: 88px minmax(0, 1fr) 160px;
    grid-template-areas:
      "logo info actions"
      "offer offer actions"
      "stats stats actions"
      "detail detail detail";
    align-items: start;
  }

  .bc-logo-wrap { grid-area: logo; }
  .bc-info { grid-area: info; align-self: start; }
  .bc-offer { grid-area: offer; }
  .bc-stats { grid-area: stats; }
  .bc-actions { grid-area: actions; align-self: stretch; }
  .bc-detail { grid-area: detail; }
}

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

@media (max-width: 600px) {
  .bc {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
      "logo info"
      "offer offer"
      "stats stats"
      "actions actions"
      "detail detail";
    gap: 12px;
    padding: 16px;
    overflow: hidden;
    align-items: start;
  }

  .bc-logo-wrap {
    grid-area: logo;
    min-width: 0;
    align-self: start;
    justify-content: center;
    width: 80px;
  }

  .bc-logo-wrap .bc-logo {
    width: 80px;
    height: 80px;
  }

  .bc-info {
    grid-area: info;
    min-width: 0;
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .bc-info h4 {
    font-size: 0.92rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .bc-badge {
    position: static;
    margin: 0 0 2px;
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  .bc-sub,
  .bc-stars,
  .bc-stars span {
    line-height: 1.35;
  }

  .bc-offer {
    grid-area: offer;
    font-size: 0.95rem;
    line-height: 1.35;
    text-align: center;
  }

  .bc-stats {
    grid-area: stats;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
    align-items: flex-start;
  }

  .bc-stats li {
    justify-content: flex-start;
    white-space: nowrap;
  }

  .bc-actions {
    grid-area: actions;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
    align-items: center;
  }

  .bc-actions .btn,
  .bc-actions .btn-more {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .bc-actions .btn-more {
    font-size: 0.88rem;
  }

  .bc-detail {
    grid-area: detail;
    min-width: 0;
    text-align: center;
  }

  .bc-rank {
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 5px;
  }

  .bc-rank-leaf {
    font-size: 0.75rem;
  }
}

/* --- Breadcrumb Nav --- */
.breadcrumb-nav {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.8rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  color: var(--muted);
}

.breadcrumb-list li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--muted);
}

.breadcrumb-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-list a:hover {
  color: var(--gold);
}

.breadcrumb-list [aria-current="page"] {
  color: var(--gold);
}
