/* Casino Landing Page Styles - Deep Violet + Modern Sharp */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Colors */
  --theme-text: #ede9fe;
  --theme-primary-alpha: #8b5cf640;
  --theme-secondary: #a78bfa;
  --theme-secondary-alpha: #a78bfa40;
  --theme-dark: #1e1033;
  --theme-muted: #c4b5fd;
  --theme-darker: #0f0819;
  --theme-accent: #c4b5fd;
  --theme-light: #f5f3ff;
  --theme-primary: #8b5cf6;

  /* Typography */
  --font-family-heading: 'Bebas Neue', sans-serif;
  --font-family-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 70px;
  --element-spacing: 30px;
  --gap: 25px;

  /* Border Radius */
  --rounded-full: 50px;
  --rounded-md: 20px;
  --rounded-sm: 12px;
  --rounded-lg: 28px;

  /* Shadows */
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.5);
  --shadow-sm: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 50px;
}



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

.bypass-block {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-block: 12px;
  padding-inline: 24px;
  background: var(--theme-primary);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--rounded-full);
  z-index: 10000;
  transition: top 0.35s ease-in;
}

.bypass-block:focus {
  top: 10px;
  outline: 3px solid var(--theme-accent);
  outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--theme-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ANIMATIONS */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes play-slideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-family-body);
  background: var(--theme-darker);
  color: var(--theme-light);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 900;
  line-height: 1.15;
  color: var(--theme-light);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease-in;
}

/* Container */

.container_4lR2M {
  width: 100%;
  max-width: 1220px;
  margin: 0px auto;
  padding-block: 0;
  padding-inline: 48px;
}


/*
 * Header
 */

.top-bar_0kEKN {
  position: sticky;
  top: 0px;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  border: 0 0 1px 0 solid rgba(255,255,255,0.07);
  transition: all 0.35s ease-in;
}

.top-bar_0kEKN.scrolled {
  background: rgba(0,0,0,0.8);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.top-bar_0kEKN .container_4lR2M {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.top-bar_0kEKN .logo {
  font-family: var(--font-family-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--theme-light);
  letter-spacing: -0.3px;
}

.top-bar_0kEKN .logo span {
  color: var(--theme-primary);
}

.nav-links_jt06b {
  display: flex;
  gap: 2rem;
}

.nav-links_jt06b a {
  font-weight: 500;
  color: var(--theme-muted);
  font-size: 14px;
  transition: color 0.35s ease-in;
}

.nav-links_jt06b a:hover {
  color: var(--theme-primary);
}

.top-bar_0kEKN-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/*! Buttons */

.link-btn_hMkmI {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-family-body);
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s ease-in;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.link-btn_hMkmI--primary {
  background: var(--theme-primary);
  border: none;
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--theme-primary-alpha);
}

.link-btn_hMkmI--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--theme-primary-alpha);
}

.link-btn_hMkmI--secondary {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(255 255 255 / 20%);
  color: var(--theme-light);
}

.link-btn_hMkmI--secondary:hover {
  border-color: var(--theme-primary);
  color: var(--theme-primary);
}

.link-btn_hMkmI--large {
  padding-top: 16px;
  padding-right: 36px;
  padding-bottom: 16px;
  padding-left: 36px;
  font-size: 16px;
}

.link-btn_hMkmI--small {
  padding-top: 8px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 13px;
}


/* HERO */

.splash_AIYm0 {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-right: 0;
  padding-bottom: 60px;
  padding-left: 0;
}

.splash_AIYm0::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 750px;
  background: radial-gradient(circle, var(--theme-primary-alpha) 0%, transparent 70%);
  pointer-events: none;
}

.splash_AIYm0::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -200px;
  width: 500px;
  height: 600px;
  background: radial-gradient(circle, var(--theme-secondary-alpha) 0%, transparent 70%);
  pointer-events: none;
}

.splash_AIYm0 .container_4lR2M {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.splash_AIYm0-content {
}

.splash_AIYm0-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 6px;
  padding-right: 16px;
  padding-bottom: 6px;
  padding-left: 16px;
  background: var(--theme-primary-alpha);
  border: 1px solid var(--theme-primary-alpha);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-primary);
  margin-bottom: 1.5rem;
}

.splash_AIYm0-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-primary);
}

.splash_AIYm0-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--theme-light);
}

.splash_AIYm0-content h1 em {
  font-style: normal;
  color: var(--theme-primary);
}

.splash_AIYm0-subtitle {
  font-size: 1.063rem;
  color: var(--theme-muted);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.7;
}

.splash_AIYm0-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.splash_AIYm0-image {
  position: relative;
  border-radius: var(--rounded-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash_AIYm0-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-lg);
}

/* STATS BAR */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1220px;
  margin: 0px auto;
  padding: 0 48px 80px;
}

.stat-block {
  text-align: center;
  padding-block: 32px;
  padding-inline: 16px;
  position: relative;
}

.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.07);
}

.stat-value {
  font-family: var(--font-family-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--theme-light);
  letter-spacing: -1px;
}

.stat-value em {
  font-style: normal;
  color: var(--theme-primary);
}

.stat-text {
  font-size: 13px;
  color: var(--theme-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 4px;
}

/* ===== Sections ===== */

.zone_vgwC1 {
  padding: var(--section-padding) 0px;
}

.zone_vgwC1--gray {
  background: rgba(255,255,255,0.03);
}

.zone_vgwC1-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--theme-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.zone_vgwC1-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.zone_vgwC1-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.88rem;
}

.zone_vgwC1-head p {
  font-size: 1rem;
  color: var(--theme-muted);
  max-width: 480px;
  margin-inline: auto;
}

.zone_vgwC1-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.zone_vgwC1-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--theme-muted);
  margin-bottom: 3rem;
  max-width: 480px;
  margin: 0 auto;
}


/*
 * Cards
 */

.tile_gKnHu {
  background: var(--theme-dark);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.35s ease-in;
}

.tile_gKnHu:hover {
  transform: translate(0, -6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}



.listing_mnrsT--bonuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile_gKnHu--bonus {
  position: relative;
  overflow: hidden;
}

.tile_gKnHu--bonus::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
}

.bonus-step {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--theme-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.tile_gKnHu--bonus h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.63rem;
  color: var(--theme-light);
}

.tile_gKnHu--bonus p {
  color: var(--theme-muted);
  font-size: 0.875rem;
  line-height: 1.7em;
  margin-bottom: 1rem;
}

.bonus-badge {
  display: inline-block;
  background: var(--theme-primary-alpha);
  color: var(--theme-primary);
  padding-block: 5px;
  padding-inline: 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}


/** Game Cards — Portrait 3/4 with overlay **/

.listing_mnrsT--games {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.tile_gKnHu--game {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.07);
}

.tile_gKnHu--game:hover {
  border-color: var(--theme-primary);
  transform: none;
  box-shadow: 0 8px 30px rgb(0 0 0 / 50%);
}

.game-thumb {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--theme-dark);
  position: relative;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease-out;
}

.tile_gKnHu--game:hover .game-thumb img {
  transform: scale(1.1);
}

.tile_gKnHu-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding-top: 20px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
}

.tile_gKnHu-name {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  display: block;
}

.tile_gKnHu-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 65%);
  display: flex;
  place-content: center;
  place-items: center;
  opacity: 0;
  transition: opacity 0.35s ease-in;
}

.tile_gKnHu--game:hover .tile_gKnHu-overlay {
  opacity: 1;
}

.play-btn {
  width: 50px;
  height: 52px;
  border-radius: 50%;
  background: var(--theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.125rem;
  box-shadow: 0 4px 20px var(--theme-primary-alpha);
  transition: transform 0.35s ease-in;
}

.tile_gKnHu--game:hover .play-btn {
  transform: translateY(-2px) scale(1.01);
}

/* PROVIDER CARDS — TEXT-ONLY COMPACT */

.listing_mnrsT--providers {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.tile_gKnHu--provider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--theme-muted);
  text-align: center;
  background: var(--theme-dark);
  border: rgba(255,255,255,0.07) 1px solid;
  border-radius: var(--rounded-md);
  transition: all 0.35s ease-in;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none;
}

.tile_gKnHu--provider:hover {
  border-color: var(--theme-primary);
  color: var(--theme-primary);
  background: var(--theme-primary-alpha);
  transform: none;
  box-shadow: none;
}


.payments-card {
  background: var(--theme-dark);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px 36px;
}

.pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pay-chip {
  background: rgba(255,255,255,0.08);
  border: rgba(255,255,255,0.12) 1px solid;
  border-radius: 8px;
  padding-block: 10px;
  padding-inline: 20px;
  font-size: 0.813rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: background 0.35s ease-in;
}

.pay-chip:hover {
  background: rgb(255 255 255 / 15%);
}

.payments-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--rounded-lg);
  overflow: hidden;
}

.payments-table th,
.payments-table td {
  padding-block: 16px;
  padding-inline: 20px;
  text-align: left;
}

.payments-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.payments-table th {
  font-weight: 600;
  color: var(--theme-accent);
  text-transform: none;
  font-size: 13px;
}

.payments-table tbody tr {
  border: solid 0 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background 0.35s ease-in;
}

.payments-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-method img {
  height: 32px;
  width: auto;
}

.time-badge {
  display: inline-block;
  padding-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  background: var(--theme-primary-alpha);
  border-radius: var(--rounded-full);
  font-size: 13px;
  color: var(--theme-primary);
}

/* -- REVIEWS -- */

.listing_mnrsT--reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.tile_gKnHu--review {
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
}

.tile_gKnHu-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 46px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--theme-primary), var(--theme-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
  font-size: 1rem;
}

.reviewer-info strong {
  display: block;
  color: var(--theme-light);
}

.stars {
  color: #fbbf24;
  font-size: 0.938rem;
  letter-spacing: 2px;
}

.tile_gKnHu--review p {
  color: var(--theme-muted);
  font-style: italic;
  line-height: 1.7;
}


/* -- ABOUT -- */

.info-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-row--reverse {
  direction: rtl;
}

.info-row--reverse > * {
  direction: ltr;
}

.info-text h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--theme-light);
}

.info-text p {
  color: var(--theme-muted);
  margin-bottom: 1rem;
  line-height: 180%;
}

.info-visual {
  display: flex;
  place-content: center;
  place-items: center;
}

.info-visual img {
  width: 100%;
  max-width: 450px;
  max-height: 300px;
  object-fit: contain;
  border-radius: var(--rounded-lg);
}

/* --- CTA Blocks — Gradient border card --- */

.zone_vgwC1--cta {
  text-align: center;
  padding: var(--section-padding) 0px;
}

.cta-card {
  background: linear-gradient(var(--theme-dark), var(--theme-dark)) padding-box, linear-gradient(160deg, var(--theme-primary), var(--theme-secondary)) border-box;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--theme-primary-alpha) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--theme-light);
  margin-bottom: 1rem;
  position: relative;
}

.cta-card h2 em {
  font-style: normal;
  color: var(--theme-primary);
}

.cta-card p {
  font-size: 1.125rem;
  color: var(--theme-muted);
  margin-bottom: 32px;
  position: relative;
}

.cta-card .link-btn_hMkmI--primary {
  position: relative;
}

/* -- SEO TEXT -- */

.info-text {
  margin-top: 48px;
  padding: 36px;
  background: var(--theme-dark);
  border-radius: var(--rounded-lg);
  border: 1px solid rgba(255,255,255,0.07);
}

.info-text h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  color: var(--theme-light);
}

.info-text p {
  color: var(--theme-muted);
  margin-bottom: 16px;
  line-height: 180%;
}

.info-text p:last-child {
  margin-bottom: 0;
}

.zone_vgwC1--seo-text {
  background: var(--theme-dark);
}

.seo-content {
  max-width: 850px;
  margin: 0px auto;
}

.seo-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--theme-light);
}

.seo-content h3 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-right: 0;
  margin-bottom: 16px;
  margin-left: 0;
  color: var(--theme-light);
}

.seo-content p {
  color: var(--theme-muted);
  margin-bottom: 20px;
  line-height: 1.9;
}

/*
 * FAQ
 */

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

.faq-item {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.07);
}

.faq-question {
  width: 100%;
  padding-block: 22px;
  padding-inline: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-light);
  text-align: left;
  transition: color 0.35s ease-in;
}

.faq-question:hover {
  color: var(--theme-primary);
}

.faq-icon {
  width: 30px;
  height: 32px;
  border-radius: 50%;
  background: var(--theme-primary-alpha);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.35s ease-in;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.35s ease-in;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 0 22px;
  color: var(--theme-muted);
  line-height: 170%;
}


.info-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: var(--theme-dark);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.info-table tr {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.07);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.info-table th,
.info-table td {
  padding-block: 18px;
  padding-inline: 24px;
  text-align: left;
}

.info-table th {
  width: 40%;
  font-weight: 600;
  color: var(--theme-primary);
  background: rgba(255,255,255,0.03);
}

.info-table td {
  color: var(--theme-muted);
}

/** CTA Bottom **/

.cta-bottom {
  text-align: center;
  padding: 100px 48px;
  background: linear-gradient(var(--theme-dark), var(--theme-dark)) padding-box, linear-gradient(160deg, var(--theme-primary), var(--theme-secondary)) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, var(--theme-primary-alpha) 0%, transparent 70%);
  pointer-events: none;
}

.cta-bottom h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}

.cta-bottom h2 em {
  font-style: normal;
  color: var(--theme-primary);
}

.cta-bottom p {
  color: var(--theme-muted);
  font-size: 17px;
  margin-bottom: 2.25rem;
  position: relative;
}


.colophon_SMD0i {
  background: var(--theme-darker);
  padding-top: 60px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.colophon_SMD0i-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.colophon_SMD0i-col h4 {
  font-size: 0.813rem;
  margin-bottom: 16px;
  color: rgb(255 255 255 / 60%);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.colophon_SMD0i-col p {
  color: rgba(255,255,255,0.5);
  line-height: 170%;
  font-size: 0.875rem;
}

.colophon_SMD0i-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.colophon_SMD0i-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.colophon_SMD0i-nav a:hover {
  color: var(--theme-light);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-badges img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.35s ease-in;
}

.trust-badges img:hover {
  filter: brightness(1) contrast(1);
  opacity: 1;
}

.gaming-care {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gaming-care a {
  display: block;
  transition: all 0.35s ease-in;
}

.gaming-care a:hover {
  transform: scale(1.03);
}

.gaming-care img {
  height: 28px;
  width: auto;
  filter: grayscale(80%) brightness(1.5);
  transition: all 0.35s ease-in;
}

.gaming-care a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.colophon_SMD0i-bottom {
  padding-block: 24px;
  padding-inline: 0;
  text-align: center;
}

.colophon_SMD0i-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.colophon_SMD0i-bottom p:last-child {
  margin-bottom: 0px;
}

.footer-update {
  margin-top: 1rem;
  opacity: 0.6;
}

.footer-legal {
  font-weight: 500;
}

.footer-disclaimer {
  max-width: 700px;
  margin: 12px auto 0;
  opacity: 0.5;
  line-height: 1.6em;
}

/** Hamburger **/

.toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  background: none;
  border: none;
  z-index: 1002;
}

.toggle-btn span {
  width: 26px;
  height: 2px;
  background: var(--theme-light);
  transition: all 0.35s ease-in;
  border-radius: 2px;
}

.toggle-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

.toggle-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.logo-mobile,
.mobile-cta {
  display: none;
}

/* ===== Responsive - Tablet ===== */

@media (max-width: 63.9375em) {
  .splash_AIYm0 .container_4lR2M {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .splash_AIYm0-content { order: 1; }
  .splash_AIYm0-image { order: 2; max-width: 400px; margin: 0 auto; }
  .splash_AIYm0-subtitle { margin-left: auto; margin-right: auto; }
  .splash_AIYm0-ctas { justify-content: center; }

  .container_4lR2M { padding-left: 32px; padding-right: 32px; }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 32px;
    padding-right: 32px;
  }

  .listing_mnrsT--bonuses { grid-template-columns: 1fr; }
  .listing_mnrsT--games { grid-template-columns: repeat(4, 1fr); }
  .listing_mnrsT--providers { grid-template-columns: repeat(5, 1fr); }
  .listing_mnrsT--reviews { grid-template-columns: repeat(2, 1fr); }

  .info-row { grid-template-columns: 1fr; }
  .info-row--reverse { direction: ltr; }

  .cta-bottom {
    padding-left: 32px;
    padding-right: 32px;
  }

  .colophon_SMD0i-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ===== Responsive - Mobile ===== */

@media (max-width: 769px) {
  .top-bar_0kEKN .container_4lR2M {
    height: auto;
    padding: 12px 20px;
    gap: 10px;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    font-family: var(--font-family-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--theme-light);
    text-decoration: none;
    white-space: nowrap;
  }

  .logo-mobile span {
    color: var(--theme-primary);
  }

  .mobile-cta {
    display: block;
    flex: 1;
    max-width: 160px;
    padding: 9px 16px;
    background: var(--theme-primary);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 4px 14px var(--theme-primary-alpha);
  }

  .top-bar_0kEKN-actions {
    display: none;
  }

  .toggle-btn {
    display: flex;
  }

  .nav-links_jt06b {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--theme-dark);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.35s ease-in;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--theme-primary);
    z-index: 1001;
    gap: 0px;
    overflow-y: auto;
  }

  .nav-links_jt06b.active {
    right: 0px;
  }

  .nav-links_jt06b a {
    font-size: 1.125rem;
    padding: 0.8rem 0px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: var(--theme-light);
  }

  .splash_AIYm0 { padding-top: 48px; padding-bottom: 32px; }
  .splash_AIYm0-image { max-width: 340px; }
  .splash_AIYm0-content h1 { font-size: 2rem; }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .zone_vgwC1 { padding: 60px 0px; }
  .container_4lR2M { padding: 0px 20px; }
  .zone_vgwC1-title { font-size: 1.75rem; }
  .zone_vgwC1-head h2 { font-size: 1.75rem; }
  .cta-bottom { padding: 60px 20px; border-radius: 12px; }
  .cta-card { padding: 40px 24px; border-radius: 14px; }

  .listing_mnrsT--bonuses { grid-template-columns: 1fr; }
  .listing_mnrsT--games { grid-template-columns: repeat(3, 1fr); }
  .listing_mnrsT--providers { grid-template-columns: repeat(4, 1fr); }
  .listing_mnrsT--reviews { grid-template-columns: 1fr; }

  .payments-table th:nth-child(2),
  .payments-table th:nth-child(3),
  .payments-table td:nth-child(2),
  .payments-table td:nth-child(3) {
    display: none;
  }

  .payments-card { padding: 28px 24px; border-radius: 14px; }

  .tile_gKnHu { padding: 24px 20px; }
  .tile_gKnHu--review { padding: 20px; }

  .info-text { padding: 24px 20px; }

  .info-table th,
  .info-table td { padding: 14px 16px; }

  .colophon_SMD0i-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 29.9375rem) {
  .container_4lR2M { padding: 0px 16px; }
  .splash_AIYm0-ctas { flex-direction: column; }
  .splash_AIYm0-ctas .link-btn_hMkmI { width: 100%; }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .listing_mnrsT--games { grid-template-columns: repeat(2, 1fr); }
  .listing_mnrsT--providers { grid-template-columns: repeat(3, 1fr); }

  .logo-mobile { font-size: 15px; }
  .mobile-cta {
    padding: 8px 12px;
    font-size: 0.75rem;
    max-width: 140px;
  }

  .cta-bottom { padding: 48px 16px; }
  .cta-bottom h2 { font-size: 1.75rem; }
  .cta-card { padding: 36px 20px; }

  .tile_gKnHu { padding: 20px 16px; }
  .info-text { padding: 20px 16px; }

  .info-table th,
  .info-table td { padding: 12px 14px; }

  .info-table th { width: 45%; }
}