/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Teal Wave
 * Typography: Sporty Bold
 * Generated: 2026-08-24T19:22:54.545Z
 */

@import url("https://fonts.googleapis.com/css2?family=Russo+One&family=Lato:wght@400;700&display=swap");

:root {
  /* Colors */
  --c-muted: #5eead4;
  --c-secondary-alpha: #2dd4bf40;
  --c-darker: #021716;
  --c-accent: #5eead4;
  --c-primary: #14b8a6;
  --c-primary-alpha: #14b8a640;
  --c-dark: #042f2e;
  --c-text: #ccfbf1;
  --c-light: #f0fdfa;
  --c-secondary: #2dd4bf;

  /* Typography */
  --heading-font: 'Russo One', sans-serif;
  --body-font: 'Lato', sans-serif;

  /* Spacing */
  --spacing-element: 16px;
  --spacing-section: 40px;
  --spacing-gap: 12px;

  /* Border Radius */
  --r-full: 4px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;

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


/* BASE */

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

.acc-skip {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--c-primary);
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-full);
  z-index: 10000;
  transition: top 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-skip:focus {
  top: 10px;
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--c-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 {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

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

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



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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 115%;
  color: var(--c-light);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */

.content-wrap_jdWgH {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding: 0 48px;
}


/* -- HEADER -- */

.site-header_htbSI {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 0 0 1px 0 solid rgba(255,255,255,0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.site-header_htbSI .content-wrap_jdWgH {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-header_htbSI .logo {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-light);
  letter-spacing: -0.5px;
}

.site-header_htbSI .logo span {
  color: var(--c-primary);
}

.main-nav_GpMFk {
  display: flex;
  gap: 32px;
}

.main-nav_GpMFk a {
  font-weight: 500;
  color: var(--c-muted);
  font-size: 14px;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav_GpMFk a:hover {
  color: var(--c-primary);
}

.site-header_htbSI-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}


/* ==================== BUTTONS ==================== */

.button_loRDK {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 28px;
  padding-bottom: 12px;
  padding-left: 28px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.button_loRDK--primary {
  background: var(--c-primary);
  border: none;
  box-shadow: 0 4px 14px var(--c-primary-alpha);
  color: rgb(255, 255, 255);
  box-shadow: 0 4px 14px var(--c-primary-alpha);
}

.button_loRDK--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--c-primary-alpha);
}

.button_loRDK--secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--c-light);
}

.button_loRDK--secondary:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

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

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

/*! Hero */

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

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

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

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

.hero_0Feuq-content {
}

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

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

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

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

.hero_0Feuq-subtitle {
  font-size: 17px;
  color: var(--c-muted);
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.7;
}

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

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

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

/* -- STATS BAR -- */

.key-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px 80px;
}

.stat {
  text-align: center;
  padding-top: 32px;
  padding-right: 16px;
  padding-bottom: 32px;
  padding-left: 16px;
  position: relative;
}

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

.highlight-num {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-light);
  letter-spacing: -0.03em;
}

.highlight-num em {
  font-style: normal;
  color: var(--c-primary);
}

.highlight-label {
  font-size: 0.813rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-top: 4px;
}



.block_vUJo6 {
  padding: var(--spacing-section) 0;
}

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

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

.block_vUJo6-head {
  text-align: center;
  margin-bottom: 56px;
}

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

.block_vUJo6-head p {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 480px;
  margin: 0 auto;
}

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

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


/* ===== Cards ===== */

.item_kfprk {
  background: var(--c-dark);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border: solid 1px rgba(255,255,255,0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.item_kfprk:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}


/* ===== Bonus Cards ===== */

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

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

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

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

.item_kfprk--bonus h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-light);
}

.item_kfprk--bonus p {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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


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

.layout_yMcDu--games {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.item_kfprk--game {
  padding: 0px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: rgba(255,255,255,0.1) solid 1px;
}

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

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

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

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

.item_kfprk-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 20px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
  background: linear-gradient(transparent, rgb(0 0 0 / 88%));
}

.item_kfprk-name {
  font-size: 0.813rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  display: block;
}

.item_kfprk-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.play-btn {
  width: 50px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-size: 18px;
  box-shadow: 0 4px 20px var(--c-primary-alpha);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.item_kfprk--game:hover .play-btn {
  transform: scale(1.05);
}

/*
 * Provider Cards — Text-only compact
 */

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

.item_kfprk--provider {
  display: flex;
  place-content: center;
  place-items: center;
  padding: 12px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-muted);
  text-align: center;
  background: var(--c-dark);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none;
}

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


/* PAYMENTS STANDALONE */

.payments-card {
  background: var(--c-dark);
  border: rgba(255,255,255,0.1) solid 1px;
  border-radius: 18px;
  padding: 40px 36px;
}

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

.pay-chip {
  background: rgb(255 255 255 / 8%);
  border: rgba(255, 255, 255, 0.12) 1px solid;
  border-radius: 12px;
  padding-block: 10px;
  padding-inline: 20px;
  font-size: 0.813rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pay-chip:hover {
  background: rgba(255, 255, 255, 0.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(--r-lg);
  overflow: hidden;
}

.payments-table th,
.payments-table td {
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  text-align: left;
}

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

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

.payments-table tbody tr {
  border: 0 0 1px 0 solid rgba(255,255,255,0.05);
  transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.time-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-primary-alpha);
  border-radius: var(--r-full);
  font-size: 13px;
  color: var(--c-primary);
}

/* --- Reviews --- */

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

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

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

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

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

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

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


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

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

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

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

.zigzag-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--c-light);
}

.zigzag-content p {
  color: var(--c-muted);
  margin-bottom: 16px;
  line-height: 1.8em;
}

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

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

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

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

.cta-card {
  background: linear-gradient(var(--c-dark), var(--c-dark)) padding-box, linear-gradient(145deg, var(--c-primary), var(--c-secondary)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  padding-top: 60px;
  padding-right: 48px;
  padding-bottom: 60px;
  padding-left: 48px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.cta-card .button_loRDK--primary {
  position: relative;
}


.seo-text {
  margin-top: 3rem;
  padding: 36px;
  background: var(--c-dark);
  border-radius: var(--r-lg);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.1);
}

.seo-text h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--c-light);
}

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

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

.block_vUJo6--seo-text {
  background: var(--c-dark);
}

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

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

.seo-content h3 {
  font-size: 24px;
  margin: 32px 0 16px;
  color: var(--c-light);
}

.seo-content p {
  color: var(--c-muted);
  margin-bottom: 1.25rem;
  line-height: 1.9;
}

/*
 * FAQ
 */

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

.faq-item {
  border: 0 0 1px 0 solid rgba(255,255,255,0.1);
}

.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(--c-light);
  text-align: left;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
  width: 28px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-primary-alpha);
  display: flex;
  place-content: center;
  place-items: center;
  color: var(--c-primary);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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


/* INFO TABLE */

.info-table {
  width: 100%;
  max-width: 750px;
  margin: 0px auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--c-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgb(0 0 0 / 4%);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.1);
}

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

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

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

/*! CTA Bottom */

.cta-bottom {
  text-align: center;
  padding: 100px 48px;
  background: linear-gradient(var(--c-dark), var(--c-dark)) padding-box, linear-gradient(145deg, var(--c-primary), var(--c-secondary)) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  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(--c-primary-alpha) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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


/* FOOTER — 4 COLUMNS */

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

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

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

.footer_31pei-col p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-size: 14px;
}

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

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

.footer_31pei-nav a:hover {
  color: var(--c-light);
}

.badge-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-strip img {
  height: 28px;
  width: auto;
  filter: grayscale(80%) brightness(1.5);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-strip img:hover {
  filter: saturate(1) brightness(1);
  opacity: 1;
}

.gaming-care {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gaming-care a {
  display: block;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gaming-care a:hover {
  transform: translate(0, -3px);
}

.gaming-care img {
  height: 28px;
  width: auto;
  filter: grayscale(100%) brightness(2);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer_31pei-bottom {
  padding-top: 24px;
  padding-right: 0;
  padding-bottom: 24px;
  padding-left: 0;
  text-align: center;
}

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

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

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

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

.footer-disclaimer {
  max-width: 650px;
  margin-top: 12px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  opacity: 0.5;
  line-height: 1.6;
}


/*
 * Hamburger
 */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1002;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--c-light);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

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

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

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

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

/** Responsive - Tablet **/

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

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

  .content-wrap_jdWgH { padding-left: 32px; padding-right: 32px; }

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

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

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

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

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

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

@media (max-width: 47.9375em) {
  .site-header_htbSI .content-wrap_jdWgH {
    height: auto;
    padding: 12px 20px;
    gap: 10px;
  }

  .logo {
    display: none;
  }

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

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

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

  .site-header_htbSI-actions {
    display: none;
  }

  .burger {
    display: flex;
  }

  .main-nav_GpMFk {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--c-dark);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--c-primary);
    z-index: 1001;
    gap: 0px;
    overflow-y: auto;
  }

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

  .main-nav_GpMFk a {
    font-size: 1.125rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--c-light);
  }

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

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

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

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

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

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

@media (max-width: 29.9375rem) {
  .content-wrap_jdWgH { padding: 0px 16px; }
  .hero_0Feuq-ctas { flex-direction: column; }
  .hero_0Feuq-ctas .button_loRDK { width: 100%; }
  .key-stats {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .layout_yMcDu--games { grid-template-columns: repeat(2, 1fr); }
  .layout_yMcDu--providers { grid-template-columns: repeat(3, 1fr); }

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

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

  .item_kfprk { padding: 20px 16px; }
  .seo-text { padding: 20px 16px; }

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

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