/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Electric Pink
 * Typography: Clean Geometric
 * Generated: 2026-09-15T12:55:44.075Z
 */

@import 'https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap';

:root {
  /* Colors */
  --theme-secondary: #f472b6;
  --theme-primary-alpha: #ec489940;
  --theme-primary: #ec4899;
  --theme-darker: #0d0509;
  --theme-accent: #f9a8d4;
  --theme-dark: #1a0a14;
  --theme-muted: #f9a8d4;
  --theme-light: #fdf2f8;
  --theme-text: #fce7f3;
  --theme-secondary-alpha: #f472b640;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --section-space: 50px;
  --item-gap: 20px;
  --element-space: 20px;

  /* Border Radius */
  --rad-full: 100px;
  --rad-md: 16px;
  --rad-sm: 4px;
  --rad-lg: 24px;

  /* Shadows */
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 30px;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.25);
}


/* ===== Base ===== */

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

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

.skip-link: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-anim {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

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

@keyframes run-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}



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

body {
  font-family: var(--font-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-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--theme-light);
}

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

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

/*
 * Container
 */

.wrapper_rpJLT {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-right: 48px;
  padding-bottom: 0;
  padding-left: 48px;
}


.top-bar_xzoMp {
  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 .3s ease-in;
}

.top-bar_xzoMp.scrolled {
  background: rgb(0 0 0 / 80%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.top-bar_xzoMp .wrapper_rpJLT {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.top-bar_xzoMp .logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--theme-light);
  letter-spacing: -0.02em;
}

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

.main-nav_cua6c {
  display: flex;
  gap: 2rem;
}

.main-nav_cua6c a {
  font-weight: 500;
  color: var(--theme-muted);
  font-size: 14px;
  transition: color .3s ease-in;
}

.main-nav_cua6c a:hover {
  color: var(--theme-primary);
}

.top-bar_xzoMp-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}


/* Buttons */

.button_9xXmf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s ease-in;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.button_9xXmf--primary {
  background: var(--theme-primary);
  border: none;
  box-shadow: 0 4px 14px var(--theme-primary-alpha);
  color: white;
  box-shadow: 0 4px 14px var(--theme-primary-alpha);
}

.button_9xXmf--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px var(--theme-primary-alpha);
}

.button_9xXmf--secondary {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255,255,255,0.2);
  color: var(--theme-light);
}

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

.button_9xXmf--large {
  padding: 16px 36px;
  font-size: 1rem;
}

.button_9xXmf--small {
  padding-block: 8px;
  padding-inline: 20px;
  font-size: 13px;
}


/** Hero **/

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

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

.showcase_iOcSr::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -180px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--theme-secondary-alpha) 0%, transparent 70%);
  pointer-events: none;
}

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

.showcase_iOcSr-content {
}

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

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

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

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

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

.showcase_iOcSr-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.showcase_iOcSr-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase_iOcSr-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}



.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-right: 48px;
  padding-bottom: 80px;
  padding-left: 48px;
}

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

.key-stat: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-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--theme-light);
  letter-spacing: -0.03em;
}

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

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


/** Sections **/

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

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

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

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

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

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

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

.segment_h7HrP-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--theme-muted);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/*! Cards */

.card_S6aIe {
  background: var(--theme-dark);
  border-radius: 16px;
  padding-block: 32px;
  padding-inline: 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.07);
  transition: all .3s ease-in;
}

.card_S6aIe:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* -- BONUS CARDS -- */

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

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

.card_S6aIe--bonus::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  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: 12px;
}

.card_S6aIe--bonus h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--theme-light);
}

.card_S6aIe--bonus p {
  color: var(--theme-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  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: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

/*
 * Game Cards
 */

.collection_UDpe6--games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card_S6aIe--game {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.card_S6aIe--game:hover {
  border-color: var(--theme-primary);
}

.game-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--theme-dark);
}

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

.card_S6aIe--game:hover .game-thumb img {
  transform: scale(1.06);
}

.game-info {
  padding-block: 14px;
  padding-inline: 16px;
}

.game-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--theme-light);
}

.game-info span {
  font-size: 12px;
  color: var(--theme-muted);
}

.card_S6aIe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .3s ease-in;
}

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

.card_S6aIe-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.card_S6aIe-name {
  font-weight: 600;
  color: white;
}


/** Provider Cards **/

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

.card_S6aIe--provider {
  display: flex;
  place-content: center;
  place-items: center;
  padding: 18px;
  aspect-ratio: 2/1;
  overflow: hidden;
  position: relative;
}

.card_S6aIe--provider:hover {
  border-color: var(--theme-primary);
}

.card_S6aIe--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: saturate(0) brightness(1.8);
  transition: all .3s ease-in;
}

.card_S6aIe--provider:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.1);
}

.card_S6aIe--provider span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  padding: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--theme-muted);
  text-align: center;
  opacity: 0;
  transition: opacity .3s ease-in;
}

.card_S6aIe--provider:hover span {
  opacity: 1;
}


/*
 * Split Layout
 */

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.split-block {
  border-radius: 16px;
  padding-top: 40px;
  padding-right: 36px;
  padding-bottom: 40px;
  padding-left: 36px;
}

.split-block--dark {
  background: var(--theme-darker);
  color: white;
}

.split-block--dark .segment_h7HrP-tag {
  color: var(--theme-accent);
}

.split-block--dark h2 {
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 12px 0px 28px;
}

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

.pay-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: background .3s ease-in;
}

.pay-chip:hover {
  background: rgba(255, 255, 255, 0.15);
}

.split-block--white {
  background: var(--theme-dark);
  border: 1px solid rgba(255,255,255,0.07);
}

.split-block--white h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 12px 0 28px;
}

/* ==================== REVIEWS ==================== */

.collection_UDpe6--reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--item-gap);
}

.card_S6aIe--review {
  padding: 28px;
}

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

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(125deg, var(--theme-primary), var(--theme-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

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

.stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
}

.review-item {
  padding: 20px 0;
  border: 1px 0 0 0 solid rgba(255,255,255,0.07);
}

.review-item:first-child {
  border-top: none;
  padding-top: 0px;
}

.review-stars {
  color: #f5a623;
  font-size: 0.938rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  color: var(--theme-muted);
  line-height: 1.7;
  margin-bottom: 6px;
  font-style: italic;
}

.review-who {
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-light);
}

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


/* ==================== PAYMENTS TABLE ==================== */

.payments-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
}

.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--rad-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: uppercase;
  font-size: 13px;
}

.payments-table tbody tr {
  border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
  transition: background .3s ease-in;
}

.payments-table tbody tr:hover {
  background: rgb(255 255 255 / 3%);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.time-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--theme-primary-alpha);
  border-radius: var(--rad-full);
  font-size: 0.813rem;
  color: var(--theme-primary);
}


/* About */

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

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

.feature-block--alt {
  direction: rtl;
}

.feature-block--alt > * {
  direction: ltr;
}

.feature-text h3 {
  font-size: 28px;
  margin-bottom: 1rem;
  color: var(--theme-light);
}

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

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual img {
  width: 100%;
  max-width: 420px;
  max-height: 320px;
  object-fit: contain;
  border-radius: var(--rad-lg);
}

/* --- CTA Blocks --- */

.segment_h7HrP--cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(160deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.segment_h7HrP--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.segment_h7HrP--cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.segment_h7HrP--cta h2 em {
  font-style: normal;
}

.segment_h7HrP--cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  position: relative;
}

.segment_h7HrP--cta .button_9xXmf {
  position: relative;
  background: white;
  color: var(--theme-primary);
}

.segment_h7HrP--cta .button_9xXmf:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}


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

.section-content {
  margin-top: 48px;
  padding-top: 36px;
  padding-right: 36px;
  padding-bottom: 36px;
  padding-left: 36px;
  background: var(--theme-dark);
  border-radius: var(--rad-lg);
  border: 1px solid rgba(255,255,255,0.07);
}

.section-content h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--theme-light);
}

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

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

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

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

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

.seo-content h3 {
  font-size: 24px;
  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: 190%;
}


.faq-list {
  max-width: 680px;
  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-top: 22px;
  padding-right: 0;
  padding-bottom: 22px;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-light);
  text-align: left;
  transition: color .3s ease-in;
}

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

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

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

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

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

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

/* Info Table */

.info-table {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--theme-dark);
  border-radius: var(--rad-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: 0 0 1px 0 solid rgba(255,255,255,0.07);
}

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

.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: rgb(255 255 255 / 3%);
}

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


/* ==================== CTA BOTTOM ==================== */

.cta-bottom {
  text-align: center;
  padding-top: 100px;
  padding-right: 48px;
  padding-bottom: 100px;
  padding-left: 48px;
  background: var(--theme-dark);
  position: relative;
  overflow: hidden;
}

.cta-bottom::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  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: -1.5px;
  margin-bottom: 1rem;
  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: 36px;
  position: relative;
}

/* FOOTER */

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

.colophon_Xl5Wm-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.colophon_Xl5Wm-col h4 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: white;
}

.colophon_Xl5Wm-col p {
  color: rgb(255 255 255 / 50%);
  line-height: 1.7em;
  font-size: 14px;
}

.colophon_Xl5Wm-nav {
  display: flex;
  flex-direction: column;
  gap: 0.63rem;
}

.colophon_Xl5Wm-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.colophon_Xl5Wm-nav a:hover {
  color: white;
}

.trust-seals {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-seals img {
  height: 50px;
  filter: grayscale(100%) brightness(2) contrast(0.9);
  transition: all .3s ease-in;
}

.trust-seals img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.responsible-gaming {
  text-align: center;
  padding-block: 40px;
  padding-inline: 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.08);
}

.responsible-gaming h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: rgb(255 255 255 / 50%);
}

.responsible-text {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 40%);
  margin-bottom: 20px;
}

.gaming-care {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.gaming-care a:hover {
  transform: translateY(-3px);
}

.gaming-care img {
  height: 40px;
  filter: grayscale(100%);
  transition: all .3s ease-in;
}

.gaming-care a:hover img {
  filter: brightness(1) contrast(1);
  opacity: 1;
}

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

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

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

.footer-update {
  margin-top: 16px;
  opacity: 0.6;
}

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

.footer-disclaimer {
  max-width: 650px;
  margin: 12px auto 0;
  opacity: 0.5;
  line-height: 160%;
}


/* ===== Hamburger ===== */

.toggle-btn {
  display: none;
  flex-direction: column;
  gap: 0.31rem;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1002;
}

.toggle-btn span {
  width: 24px;
  height: 2px;
  background: var(--theme-light);
  transition: all .3s 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;
}


@media (max-width: 64rem) {
  .showcase_iOcSr .wrapper_rpJLT {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

  .split-row { grid-template-columns: 1fr; }

  .feature-block { grid-template-columns: 1fr; }
  .feature-block--alt { direction: ltr; }

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

  .colophon_Xl5Wm-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .colophon_Xl5Wm-nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-seals { justify-content: center; }
}

/** Responsive - Mobile **/

@media (max-width: 47.9375em) {
  .top-bar_xzoMp .wrapper_rpJLT {
    height: auto;
    padding: 12px 20px;
    gap: 10px;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.063rem;
    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: white;
    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_xzoMp-actions {
    display: none;
  }

  .toggle-btn {
    display: flex;
  }

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

  .main-nav_cua6c.active {
    right: 0px;
  }

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

  .showcase_iOcSr { padding-top: 48px; padding-bottom: 32px; }
  .showcase_iOcSr-content h1 { font-size: 2rem; }
  .highlights {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .segment_h7HrP { padding: 60px 0; }
  .wrapper_rpJLT { padding: 0px 20px; }
  .segment_h7HrP-title { font-size: 1.75rem; }
  .segment_h7HrP-head h2 { font-size: 1.75rem; }
  .cta-bottom { padding: 60px 20px; }

  .collection_UDpe6--bonuses { grid-template-columns: 1fr; }
  .collection_UDpe6--games { grid-template-columns: repeat(2, 1fr); }
  .collection_UDpe6--providers { grid-template-columns: repeat(3, 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;
  }

  .split-block {
    padding: 28px 24px;
    border-radius: 14px;
  }

  .pay-grid { gap: 8px; }

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

  .section-content { padding: 24px 20px; }

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

@media (max-width: 481px) {
  .wrapper_rpJLT { padding: 0px 16px; }
  .showcase_iOcSr-ctas { flex-direction: column; }
  .showcase_iOcSr-ctas .button_9xXmf { width: 100%; }
  .highlights {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .collection_UDpe6--games { grid-template-columns: 1fr 1fr; }
  .collection_UDpe6--providers { grid-template-columns: repeat(2, 1fr); }

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

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

  .split-block {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .card_S6aIe { padding: 20px 16px; }
  .section-content { padding: 20px 16px; }

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

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