/* Casino Landing Page Styles - Deep Violet + Bold Impact */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Nunito:wght@400;600&display=swap');

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

  /* Typography */
  --font-family-heading: 'Oswald', sans-serif;
  --font-family-body: 'Nunito', sans-serif;

  /* Spacing */
  --pad-section: 50px;
  --grid-gap: 20px;
  --pad-element: 20px;

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

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



/* ==================== BASE ==================== */

*, *::before, *::after {
  margin: 0;
  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(--c-primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-full);
  z-index: 10000;
  transition: top .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.skip-link: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 {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes play-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


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

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

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

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


/* ==================== CONTAINER ==================== */

.content-wrap_vTIl9 {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-block: 0;
  padding-inline: 48px;
}



/* Header */

.site-header_MhKtg {
  position: sticky;
  top: 0px;
  z-index: 1000;
  background: rgb(0 0 0 / 60%);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.1);
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.site-header_MhKtg .content-wrap_vTIl9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

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

.nav_SmbaK {
  display: flex;
  gap: 32px;
}

.nav_SmbaK a {
  font-weight: 500;
  color: var(--c-muted);
  font-size: 0.875rem;
  transition: color .25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.site-header_MhKtg-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}


/** Buttons **/

.link-btn_zHFcP {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 12px;
  padding-inline: 28px;
  font-family: var(--font-family-body);
  font-size: 0.938rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.link-btn_zHFcP--primary {
  background: transparent;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
  box-shadow: 0 4px 14px var(--c-primary-alpha);
}

.link-btn_zHFcP--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px var(--c-primary-alpha);
  background: var(--c-primary);
  color: white;
}

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

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

.link-btn_zHFcP--large {
  padding-block: 16px;
  padding-inline: 36px;
  font-size: 16px;
}

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


/* HERO */

.banner_ivaRm {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

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

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

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

.banner_ivaRm-content {
}

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

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

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

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

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

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

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

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



/* Stats Bar */

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

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

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

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

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

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



/* --- Sections --- */

.segment_UTGCZ {
  padding: var(--pad-section) 0;
}

.segment_UTGCZ--gray {
  background: rgba(255,255,255,0.035);
}

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

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

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

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

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

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



/* Cards */

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

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



/* BONUS CARDS */

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

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

.box_sERx3--bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  right: 0;
  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: 0.75rem;
}

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

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

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



/* GAME CARDS */

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

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

.box_sERx3--game:hover {
  border-color: var(--c-primary);
}

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

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

.box_sERx3--game:hover .game-thumb img {
  transform: scale(1.05);
}

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

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

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

.box_sERx3-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  place-content: center;
  place-items: center;
  opacity: 0;
  transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.box_sERx3-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 16px;
  background: linear-gradient(transparent, rgb(0 0 0 / 90%));
}

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



/* PROVIDER CARDS */

.listing_iIpXU--providers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.box_sERx3--provider {
  display: flex;
  place-content: center;
  place-items: center;
  padding: 16px;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.box_sERx3--provider:hover {
  border-color: var(--c-primary);
}

.box_sERx3--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.box_sERx3--provider:hover img {
  filter: brightness(1) contrast(1);
  transform: scale(1.06);
}

.box_sERx3--provider span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-muted);
  text-align: center;
  opacity: 0;
  transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1);
}

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




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

.split-block {
  border-radius: 16px;
  padding: 40px 36px;
}

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

.split-block--dark .segment_UTGCZ-tag {
  color: var(--c-accent);
}

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

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

.pay-chip {
  background: rgba(255,255,255,0.08);
  border: rgba(255,255,255,0.12) 1px solid;
  border-radius: 12px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 13px;
  color: rgb(255 255 255 / 75%);
  font-weight: 500;
  transition: background .25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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


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

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

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

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

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

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

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

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

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

.review-stars {
  color: #fbbf24;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

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

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

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



/* -- PAYMENTS TABLE -- */

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

.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.payments-table th,
.payments-table td {
  padding: 16px 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 rgba(255, 255, 255, 0.05) solid;
  transition: background .25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.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(--c-primary-alpha);
  border-radius: var(--r-full);
  font-size: 13px;
  color: var(--c-primary);
}


/* ===== About ===== */

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

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

.alt-row--flip {
  direction: rtl;
}

.alt-row--flip > * {
  direction: ltr;
}

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

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

.alt-media {
  display: flex;
  place-content: center;
  place-items: center;
}

.alt-media img {
  width: 100%;
  max-width: 400px;
  max-height: 320px;
  object-fit: contain;
  border-radius: var(--r-lg);
}


/* CTA BLOCKS */

.segment_UTGCZ--cta {
  text-align: center;
  padding-block: 80px;
  padding-inline: 0;
  background: linear-gradient(to bottom, var(--c-primary) 0%, var(--c-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.segment_UTGCZ--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_UTGCZ--cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 16px;
  position: relative;
}

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

.segment_UTGCZ--cta p {
  font-size: 18px;
  color: rgb(255 255 255 / 90%);
  margin-bottom: 2rem;
  position: relative;
}

.segment_UTGCZ--cta .link-btn_zHFcP {
  position: relative;
  background: white;
  color: var(--c-primary);
}

.segment_UTGCZ--cta .link-btn_zHFcP:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}



/*! SEO Text */

.section-text {
  margin-top: 48px;
  padding-top: 36px;
  padding-right: 36px;
  padding-bottom: 36px;
  padding-left: 36px;
  background: var(--c-dark);
  border-radius: var(--r-lg);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.1);
}

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

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

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

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

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

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

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

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



/*
 * FAQ
 */

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

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

.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: 16px;
  font-weight: 600;
  color: var(--c-light);
  text-align: left;
  transition: color .25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
  width: 30px;
  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 .25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s 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 {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: var(--c-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  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 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: rgba(255,255,255,0.03);
}

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



.cta-bottom {
  text-align: center;
  padding: 100px 48px;
  background: var(--c-dark);
  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(--c-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(--c-primary);
}

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



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

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

.colophon_ac8N8-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

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

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

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

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

.cert-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 50px;
  filter: grayscale(100%);
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-logos img:hover {
  filter: brightness(1) contrast(1);
  opacity: 1;
}

.responsible-gaming {
  text-align: center;
  padding-top: 40px;
  padding-right: 0;
  padding-bottom: 40px;
  padding-left: 0;
  border: solid rgb(255 255 255 / 8%) 1px 0;
}

.responsible-gaming h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.responsible-text {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

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

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

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

.gaming-care img {
  height: 40px;
  opacity: 0.4;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.colophon_ac8N8-bottom {
  padding: 24px 0;
  text-align: center;
}

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

.colophon_ac8N8-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-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-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  background: none;
  border: none;
  z-index: 1002;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--c-light);
  transition: all .25s 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.9375rem) {
  .banner_ivaRm .content-wrap_vTIl9 {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

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

  .alt-row { grid-template-columns: 1fr; }
  .alt-row--flip { direction: ltr; }

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

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

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

  .cert-logos { justify-content: center; }
}



@media (max-width: 770px) {
  .site-header_MhKtg .content-wrap_vTIl9 {
    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(--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: white;
    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_MhKtg-actions {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav_SmbaK {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--c-dark);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right .25s 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: 0;
    overflow-y: auto;
  }

  .nav_SmbaK.active {
    right: 0;
  }

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

  .banner_ivaRm { padding-top: 48px; padding-bottom: 32px; }
  .banner_ivaRm-content h1 { font-size: 2rem; }
  .casino-stats {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .segment_UTGCZ { padding: 60px 0; }
  .content-wrap_vTIl9 { padding: 0px 20px; }
  .segment_UTGCZ-title { font-size: 1.75rem; }
  .segment_UTGCZ-head h2 { font-size: 1.75rem; }
  .cta-bottom { padding: 60px 20px; }

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

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

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

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

@media (max-width: 480px) {
  .content-wrap_vTIl9 { padding: 0 16px; }
  .banner_ivaRm-ctas { flex-direction: column; }
  .banner_ivaRm-ctas .link-btn_zHFcP { width: 100%; }
  .casino-stats {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .listing_iIpXU--games { grid-template-columns: 1fr 1fr; }
  .listing_iIpXU--providers { grid-template-columns: repeat(2, 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; }

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

  .box_sERx3 { padding: 20px 16px; }
  .section-text { padding: 20px 16px; }

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

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