/* Limitless Casino Canada – Minimal Luxury Editorial 2026 */
:root {
  --bg: #0c0a1a;
  --bg-elevated: #15122b;
  --surface: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.07);
  --gold: #f0c14b;
  --gold-soft: #d4a83a;
  --indigo: #7c6af7;
  --indigo-dim: #5a4bd1;
  --text: #f4f1ff;
  --muted: #a39ec4;
  --success: #34d399;
  --danger: #f87171;
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 72px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow: 0 20px 40px -12px rgba(0,0,0,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(124,106,247,0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(240,193,75,0.06), transparent 50%);
  pointer-events: none;
  z-index: -1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.container { width: min(1140px, 92%); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(12,10,26,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  background: rgba(12,10,26,0.95);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo img { height: 38px; width: auto; }
.nav-desktop { display: flex; gap: 1.75rem; align-items: center; }
.nav-desktop a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.5rem;
  font-weight: 600;
  font-size: .92rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  font-family: inherit;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1408;
  box-shadow: 0 6px 20px rgba(240,193,75,.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240,193,75,.35);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: .3s;
}
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(12,10,26,0.97);
  backdrop-filter: blur(18px);
  padding: 1.25rem;
  display: none;
  flex-direction: column;
  gap: .4rem;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .85rem 1rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 500;
}
.mobile-nav a:hover { background: var(--surface); color: var(--gold); }

/* Hero – editorial split */
.hero {
  padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .85rem;
  background: rgba(124,106,247,.15);
  border: 1px solid rgba(124,106,247,.35);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 1.1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.25rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: .8rem;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

/* Sections common */
section { padding: 4.75rem 0; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: .85rem;
  line-height: 1.2;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
}

/* Cards */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(240,193,75,.25);
}

/* Trust row */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 0 1rem;
}
.trust-item {
  text-align: center;
  padding: 1.1rem .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-item strong {
  display: block;
  font-size: .9rem;
  color: var(--gold);
  margin-bottom: .2rem;
}
.trust-item span {
  font-size: .78rem;
  color: var(--muted);
}

/* Bonus block */
.bonus-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}
.bonus-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.bonus-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.bonus-list {
  display: grid;
  gap: .85rem;
  margin: 1.5rem 0;
}
.bonus-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .9rem 1rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.bonus-item .ico {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240,193,75,.12);
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}
.bonus-item h4 {
  font-size: .95rem;
  margin-bottom: .15rem;
}
.bonus-item p {
  font-size: .85rem;
  color: var(--muted);
}

/* Steps horizontal */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-dim));
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  border-radius: 10px;
  margin-bottom: .9rem;
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.step p {
  font-size: .88rem;
  color: var(--muted);
}

/* Two-col content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.media-frame img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Tables */
.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
th, td {
  padding: .95rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  background: rgba(0,0,0,.2);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,.015); }

/* Scores */
.scores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .9rem;
}
.score {
  text-align: center;
  padding: 1.15rem .75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.score-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.score-label {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .3rem;
}
.score-bar {
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  margin-top: .7rem;
  overflow: hidden;
}
.score-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--indigo));
  border-radius: 2px;
}

/* Pros / Cons */
.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.pc {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pc h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pc.pros h3 { color: var(--success); }
.pc.cons h3 { color: var(--danger); }
.pc ul { display: grid; gap: .55rem; }
.pc li {
  font-size: .92rem;
  color: var(--muted);
  padding-left: 1.15rem;
  position: relative;
}
.pc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.pc.pros li::before { background: var(--success); }
.pc.cons li::before { background: var(--danger); }

/* Suit */
.suit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.suit {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.suit h3 {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: .9rem;
}
.suit ul { display: grid; gap: .5rem; }
.suit li {
  font-size: .9rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}
.suit li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--indigo);
}

/* Content text blocks */
.text-block {
  max-width: 780px;
  margin-bottom: 1.75rem;
}
.text-block p {
  color: var(--muted);
  margin-bottom: .9rem;
}
.text-block h3 {
  font-size: 1.25rem;
  color: var(--gold);
  margin: 1.5rem 0 .7rem;
}
.text-block ol, .text-block ul {
  margin: .8rem 0 1rem 1.2rem;
  color: var(--muted);
}
.text-block li { margin-bottom: .4rem; }
.text-block ol { list-style: decimal; }
.text-block ul { list-style: disc; }

/* FAQ */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: .65rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(240,193,75,.3); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: .98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--indigo);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 420px; }
.faq-a-inner {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

/* Final CTA */
.cta-block {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(160deg, rgba(124,106,247,.12), rgba(240,193,75,.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.cta-block h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: .75rem;
}
.cta-block p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

/* Footer */
.site-footer {
  padding: 3.25rem 0 1.75rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.footer-brand img { height: 34px; margin-bottom: .85rem; }
.footer-brand p {
  font-size: .88rem;
  color: var(--muted);
  max-width: 260px;
}
.footer-col h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: .85rem;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: .45rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--indigo); }
.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8rem;
  color: var(--muted);
}

/* Floating CTA */
.float-cta {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all .35s;
}
.float-cta.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.float-cta .btn {
  box-shadow: 0 10px 32px rgba(240,193,75,.35);
  padding: .9rem 1.35rem;
}

/* Cookie */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(12,10,26,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: .9rem 1.25rem;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie.show { display: flex; }
.cookie p {
  font-size: .85rem;
  color: var(--muted);
  max-width: 520px;
}
.cookie .btn { padding: .55rem 1.1rem; font-size: .82rem; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .nav-desktop, .header-cta { display: none; }
  .burger { display: flex; }
  .hero-grid,
  .bonus-split,
  .two-col,
  .pc-grid,
  .suit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .two-col.reverse { direction: ltr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: calc(var(--header-h) + 2rem); }
}
@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .hero h1 { font-size: 1.95rem; }
  .section-title { font-size: 1.55rem; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .scores { grid-template-columns: repeat(2, 1fr); }
  th, td { padding: .7rem .8rem; font-size: .84rem; }
}