/* =======================================================
   SHINY WILDS CASINO — Design System Purple
   Mimic design officiel shinywilds.casino
   ======================================================= */

:root {
  /* Purple palette */
  --canvas-top:    #2a1d70;
  --canvas-mid:    #1e0f5a;
  --canvas-deep:   #150a45;
  --canvas-card:   #1f1456;
  --canvas-raised: #2d1e80;
  --canvas-tabs:   #160e3d;

  /* Accents */
  --brand:         #5b3fb8;
  --brand-hover:   #7c5bd4;
  --brand-light:   #a78bfa;
  --gold:          #FBBF24;
  --gold-light:    #FDE68A;

  /* Textes */
  --ink:           #ffffff;
  --ink-muted:     rgba(255,255,255,0.72);
  --ink-faint:     rgba(255,255,255,0.45);

  /* Boutons */
  --btn-register-bg:  #0a0530;
  --btn-register-border: rgba(120,80,220,0.55);
  --btn-login-border: rgba(255,255,255,0.65);

  /* Edges */
  --edge:          rgba(255,255,255,0.12);
  --edge-card:     rgba(255,255,255,0.08);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-pill: 999px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(180deg, var(--canvas-top) 0%, var(--canvas-mid) 40%, var(--canvas-deep) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }
li { margin: 0; }

/* ---- Container ---- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Typographie ---- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .1s;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  min-height: 42px;
}
.btn-register {
  background: var(--btn-register-bg);
  color: var(--ink);
  border-color: var(--btn-register-border);
}
.btn-register:hover {
  background: #120840;
  border-color: var(--brand-light);
}
.btn-login {
  background: transparent;
  color: var(--ink);
  border-color: var(--btn-login-border);
}
.btn-login:hover {
  background: rgba(255,255,255,.08);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
}
.btn-hero {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  min-height: 52px;
  letter-spacing: .5px;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  min-height: 52px;
}
.btn-full { width: 100%; display: flex; }

/* ---- STICKY CTA MOBILE ---- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  padding: 10px 16px 14px;
  background: var(--canvas-deep);
  border-top: 1px solid var(--edge);
  display: flex;
  gap: 10px;
}
.sticky-cta .btn { flex: 1; }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ======================================================
   HEADER
   ====================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(21, 10, 69, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--edge);
  height: 72px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
@media (min-width: 960px) {
  .hamburger { display: none; }
}

/* Logo */
.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin: 0 auto;
  line-height: 1;
}
@media (min-width: 960px) {
  .logo-link {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.logo-shiny {
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.logo-wilds {
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  color: var(--brand-light);
  letter-spacing: -0.5px;
}
.logo-casino {
  font-size: 9px;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav desktop */
.header-nav {
  display: none;
  gap: 4px;
  align-items: center;
  margin-left: 24px;
}
@media (min-width: 960px) {
  .header-nav {
    display: flex;
  }
}
/* Mobile nav open */
.header-nav.nav-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: rgba(21, 10, 69, 0.98);
  border-bottom: 1px solid var(--edge);
  padding: 16px 20px 24px;
  gap: 4px;
  z-index: 199;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  border-radius: var(--radius-sm);
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(255,255,255,.07);
  color: var(--ink);
}
.nav-active {
  color: var(--ink);
  border-bottom: 2px solid var(--brand-light);
  border-radius: 0;
}

/* Header actions */
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}
.btn-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-muted);
  padding: 6px;
  display: flex;
  align-items: center;
  transition: color .12s;
}
.btn-search:hover { color: var(--ink); }

/* Language selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background .12s;
}
.lang-selector:hover { background: rgba(255,255,255,.06); }

@media (max-width: 680px) {
  .btn-login { display: none; }
  .lang-selector { display: none; }
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero-halo {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(91,63,184,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .hero-inner {
    grid-template-columns: 60% 40%;
  }
}

/* Hero texte */
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 16px;
}
.hero-h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.hero-h1 strong {
  color: var(--gold);
  font-weight: 800;
}
.hero-lead {
  font-size: 17px;
  color: var(--ink-muted);
  margin-bottom: 32px;
  max-width: 50ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-fine {
  font-size: 12px;
  color: var(--ink-faint);
}
.hero-fine a {
  color: var(--brand-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Dé 3D illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dice-container {
  position: relative;
  width: 240px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dice-3d {
  width: 160px;
  height: 160px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(-30deg);
  animation: dice-float 4s ease-in-out infinite;
}
@keyframes dice-float {
  0%, 100% { transform: rotateX(-20deg) rotateY(-30deg) translateY(0); }
  50% { transform: rotateX(-20deg) rotateY(-30deg) translateY(-12px); }
}
.dice-face {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
}
.dice-top {
  background: linear-gradient(135deg, #7c5bd4 0%, #5b3fb8 100%);
  border: 2px solid rgba(255,255,255,.25);
  transform: translateZ(80px);
  box-shadow: 0 0 40px rgba(91,63,184,0.6);
}
.dice-front {
  background: linear-gradient(180deg, #6d4ec6 0%, #4a2fa0 100%);
  border: 2px solid rgba(255,255,255,.18);
  transform: rotateY(90deg) translateZ(80px);
}
.dice-right {
  background: linear-gradient(180deg, #5b3fb8 0%, #3b2680 100%);
  border: 2px solid rgba(255,255,255,.18);
  transform: rotateX(-90deg) translateZ(80px);
}
.dice-symbol {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(251,191,36,0.8);
  font-style: normal;
}
.dice-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  padding: 24px;
  width: 100%;
  height: 100%;
}
.dice-dots i {
  background: rgba(255,255,255,.8);
  border-radius: 50%;
  display: block;
}
.dice-glow {
  position: absolute;
  bottom: -20px;
  left: 50%; transform: translateX(-50%);
  width: 160px; height: 30px;
  background: radial-gradient(ellipse, rgba(91,63,184,0.5) 0%, transparent 70%);
  filter: blur(8px);
}
/* Étoiles dorées */
.star-1, .star-2, .star-3, .star-4 {
  position: absolute;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(251,191,36,0.7);
  animation: star-twinkle 2.5s ease-in-out infinite;
  font-style: normal;
}
.star-1 { top: 20px; left: 20px; font-size: 14px; animation-delay: 0s; }
.star-2 { top: 40px; right: 10px; font-size: 10px; animation-delay: .6s; }
.star-3 { bottom: 40px; left: 10px; font-size: 12px; animation-delay: 1.2s; }
.star-4 { bottom: 20px; right: 30px; font-size: 16px; animation-delay: 1.8s; }
@keyframes star-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

/* ======================================================
   LOBBY
   ====================================================== */
.lobby-section {
  padding: 16px 0 56px;
}

/* Tabs row */
.lobby-tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 32px;
  background: var(--canvas-tabs);
  border-radius: var(--radius-xl);
  padding: 8px 12px;
}
.lobby-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--ink-muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.tab-btn:hover {
  background: rgba(255,255,255,.07);
  color: var(--ink);
}
.tab-active {
  background: var(--brand);
  color: var(--ink) !important;
  font-weight: 600;
}
@media (max-width: 640px) {
  .tab-hidden { display: none; }
}
.lobby-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  color: var(--ink-muted);
}
.lobby-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: var(--font);
  font-size: 13px;
  width: 140px;
}
.lobby-search input::placeholder { color: var(--ink-faint); }
.lobby-icons {
  display: flex;
  gap: 4px;
}
.lobby-icons button {
  background: rgba(255,255,255,.07);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
  width: 36px; height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, color .12s;
}
.lobby-icons button:hover {
  background: rgba(255,255,255,.14);
  color: var(--ink);
}

/* Game sections */
.game-section {
  margin-bottom: 40px;
}
.game-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}
.game-section-title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.game-section-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-show-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink-muted);
  border: 1px solid var(--edge);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  transition: background .12s, color .12s;
}
.btn-show-all:hover {
  background: rgba(255,255,255,.07);
  color: var(--ink);
}
.nav-arrow {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--edge);
  border-radius: 50%;
  width: 32px; height: 32px;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, color .12s;
}
.nav-arrow:hover {
  background: rgba(255,255,255,.14);
  color: var(--ink);
}

/* Games carousel */
.games-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 540px) {
  .games-carousel { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 800px) {
  .games-carousel { grid-template-columns: repeat(6, 1fr); }
}

/* Game card */
.game-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
  background: var(--canvas-card);
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.game-card-img {
  aspect-ratio: 3/4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-card-img > img:not(.btn-fav img) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-placeholder-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.game-emoji {
  font-size: 40px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.4));
}
.btn-fav {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,.5);
  border: none;
  border-radius: 50%;
  width: 28px; height: 28px;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, color .12s;
}
.btn-fav:hover {
  background: rgba(0,0,0,.75);
  color: #fff;
}
.game-card-footer {
  padding: 8px 10px 10px;
  background: rgba(0,0,0,.55);
}
.game-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider {
  display: block;
  font-size: 10px;
  color: var(--ink-faint);
}

/* ======================================================
   SEO SECTIONS
   ====================================================== */
.seo-section {
  padding: 64px 0;
}
.seo-dark {
  background: rgba(0,0,0,.25);
}
.seo-section-head {
  margin-bottom: 40px;
  max-width: 720px;
}
.seo-section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.seo-section-head p {
  color: var(--ink-muted);
  font-size: 16px;
}

/* Intro grid */
.seo-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) {
  .seo-intro-grid {
    grid-template-columns: 1fr 260px;
  }
}
.seo-text-block p {
  color: var(--ink-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
}
.seo-text-block p:last-child { margin-bottom: 0; }

/* Stat cards */
.seo-stats-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-self: start;
}
@media (min-width: 800px) {
  .seo-stats-col {
    grid-template-columns: 1fr;
  }
}
.seo-stat-card {
  background: var(--canvas-card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.seo-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.seo-stat-label {
  font-size: 12px;
  color: var(--ink-muted);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--edge);
}
.purple-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.purple-table thead {
  background: var(--brand);
}
.purple-table thead th {
  padding: 13px 16px;
  text-align: left;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
}
.purple-table tbody tr {
  border-bottom: 1px solid var(--edge);
  transition: background .1s;
}
.purple-table tbody tr:last-child { border-bottom: none; }
.purple-table tbody tr:hover { background: rgba(255,255,255,.04); }
.purple-table tbody td {
  padding: 13px 16px;
  font-size: 14px;
  color: var(--ink-muted);
  vertical-align: middle;
}
.purple-table tbody td strong { color: var(--ink); }
.purple-table tbody td code {
  background: rgba(255,255,255,.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--brand-light);
}

.tag-purple {
  display: inline-block;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  background: rgba(91,63,184,.35);
  border: 1px solid rgba(91,63,184,.5);
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-light);
  letter-spacing: .3px;
  margin-left: 4px;
  vertical-align: middle;
}

.mt-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Promo grid */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) {
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
}
.promo-card {
  background: var(--canvas-card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color .15s, transform .15s;
}
.promo-card:hover {
  border-color: rgba(91,63,184,.5);
  transform: translateY(-2px);
}
.promo-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.promo-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.promo-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* VIP paliers */
.vip-paliers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .vip-paliers { grid-template-columns: repeat(3, 1fr); }
}
.vip-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--edge);
  transition: transform .15s;
}
.vip-card:hover { transform: translateY(-3px); }
.vip-argent { background: linear-gradient(135deg, #1f1456 0%, #160e3d 100%); }
.vip-or { background: linear-gradient(135deg, #2a1d70 0%, #1a0f50 100%); border-color: rgba(251,191,36,.3); }
.vip-platine { background: linear-gradient(135deg, #3b2680 0%, #1e0f5a 100%); border-color: rgba(167,139,250,.3); }
.vip-badge {
  font-size: 32px;
  margin-bottom: 14px;
}
.vip-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.vip-levels {
  font-size: 12px;
  color: var(--brand-light);
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.vip-card ul {
  list-style: none;
  padding: 0;
}
.vip-card ul li {
  font-size: 13px;
  color: var(--ink-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--edge);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.vip-card ul li:last-child { border-bottom: none; }
.vip-card ul li::before {
  content: '✓';
  color: var(--brand-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Payment logos */
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.payment-logo-pill {
  padding: 6px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--edge);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
}

/* Steps */
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .steps-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .steps-row { grid-template-columns: repeat(4, 1fr); }
}
.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--canvas-card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.step-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-body p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: var(--canvas-card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: border-color .15s;
}
.review-card:hover { border-color: rgba(91,63,184,.4); }
.review-stars {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.star-empty { color: rgba(255,255,255,.2); }
.review-meta {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}
.review-sub {
  font-size: 11px;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.review-text {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.65;
}

/* Security grid */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) {
  .security-grid { grid-template-columns: repeat(3, 1fr); }
}
.security-card {
  background: var(--canvas-card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color .15s;
}
.security-card:hover { border-color: rgba(91,63,184,.4); }
.security-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.security-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.security-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Responsible gambling */
.responsible-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .responsible-grid { grid-template-columns: repeat(2, 1fr); }
}
.responsible-tools,
.responsible-help {
  background: var(--canvas-card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.responsible-tools h3,
.responsible-help h3 {
  font-size: 16px;
  margin-bottom: 16px;
}
.responsible-tools ul { list-style: none; padding: 0; }
.responsible-tools ul li {
  font-size: 14px;
  color: var(--ink-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--edge);
}
.responsible-tools ul li:last-child { border-bottom: none; }
.responsible-tools ul li strong { color: var(--ink); }
.responsible-help p {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.responsible-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--edge);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  transition: background .12s, color .12s;
}
.responsible-links a:hover { background: rgba(255,255,255,.12); color: var(--ink); }
.age-warning {
  font-size: 12px;
  color: var(--ink-faint);
  font-weight: 600;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 780px;
}
.faq-item {
  background: var(--canvas-card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item[open] {
  border-color: rgba(91,63,184,.45);
}
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background .1s;
}
.faq-item summary:hover { background: rgba(255,255,255,.04); }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-light);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ======================================================
   GUIDE COMPLET
   ====================================================== */
.guide-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--edge);
}
.guide-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.guide-h3 {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: var(--brand-light);
  margin-bottom: 14px;
  letter-spacing: -.2px;
}
.guide-block > p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 12px;
}
.guide-block > p:last-child { margin-bottom: 0; }

/* Slots grid */
.guide-slots-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.guide-slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: baseline;
  background: var(--canvas-card);
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.guide-slot-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  min-width: 180px;
}
.guide-slot-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.guide-slot-stats span {
  font-size: 12px;
  color: var(--ink-faint);
}

/* Providers badges */
.guide-providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.guide-provider-badge {
  padding: 6px 14px;
  background: rgba(91,63,184,.18);
  border: 1px solid rgba(91,63,184,.35);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-light);
}

/* Guide list */
.guide-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-list li {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.guide-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--brand-light);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

/* CTA final */
.cta-final {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(91,63,184,.2) 0%, rgba(21,10,69,.6) 100%);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  text-align: center;
}
.cta-final-inner h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-final-inner > p {
  color: var(--ink-muted);
  margin-bottom: 32px;
  font-size: 17px;
}
.cta-final-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 16px;
}
.fine-text {
  font-size: 12px;
  color: var(--ink-faint);
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer-bottom {
  background: rgba(0,0,0,.4);
  border-top: 1px solid var(--edge);
  padding: 48px 0 32px;
}
.footer-providers {
  margin-bottom: 28px;
}
.footer-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-logo-pill {
  padding: 5px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--edge);
  border-radius: var(--radius-pill);
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--edge);
}
.footer-links a {
  font-size: 12px;
  color: var(--ink-faint);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .12s;
}
.footer-links a:hover { color: var(--ink-muted); }
.footer-legal {
  padding-top: 20px;
  border-top: 1px solid var(--edge);
}
.footer-copyright {
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.7;
  max-width: 860px;
  margin-bottom: 16px;
}
.footer-responsible-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.age-badge-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--ink-faint);
  color: var(--ink-muted);
  font-weight: 800;
  font-size: 12px;
}
.footer-resp-link {
  font-size: 12px;
  color: var(--ink-faint);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .12s;
}
.footer-resp-link:hover { color: var(--ink-muted); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--edge);
  color: var(--ink-muted);
  transition: background .12s, color .12s;
}
.social-link:hover {
  background: rgba(255,255,255,.12);
  color: var(--ink);
}

/* ======================================================
   MOBILE BOTTOM PADDING
   ====================================================== */
@media (max-width: 767px) {
  body { padding-bottom: 72px; }
}
