/* Casino Landing Page Styles - Emerald Fortune + Bold Impact */

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

:root {
  /* Colors */
  --clr-primary: #059669;
  --clr-dark: #052e1f;
  --clr-text: #d1fae5;
  --clr-light: #ecfdf5;
  --clr-secondary: #10b981;
  --clr-muted: #6ee7b7;
  --clr-darker: #021a11;
  --clr-accent: #34d399;
  --clr-primary-alpha: #05966940;
  --clr-secondary-alpha: #10b98140;

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

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

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

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



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

.skip-nav {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--clr-primary);
  color: #FFF;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  z-index: 10000;
  transition: top 0.35s ease-in-out;
}

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


a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--clr-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-fx {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

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



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

body {
  font-family: var(--font-family-body);
  background: var(--clr-darker);
  color: var(--clr-light);
  line-height: 1.7em;
  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(--clr-light);
}

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

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

/* --- Container --- */

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

/** Header **/

.nav-wrap_Rs6vL {
  position: sticky;
  top: 0px;
  z-index: 1000;
  background: rgb(0 0 0 / 60%);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 0 0 1px 0 rgba(255,255,255,0.06) solid;
  transition: all 0.35s ease-in-out;
}

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

.nav-wrap_Rs6vL .wrapper_e6mfc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-wrap_Rs6vL .logo {
  font-family: var(--font-family-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--clr-light);
  letter-spacing: -0.3px;
}

.nav-wrap_Rs6vL .logo span {
  color: var(--clr-primary);
}

.menu_aDq6I {
  display: flex;
  gap: 2rem;
}

.menu_aDq6I a {
  font-weight: 500;
  color: var(--clr-muted);
  font-size: 14px;
  transition: color 0.35s ease-in-out;
}

.menu_aDq6I a:hover {
  color: var(--clr-primary);
}

.nav-wrap_Rs6vL-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ===== Buttons ===== */

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

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

.link-btn_3FJd7--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--clr-primary-alpha);
  background: var(--clr-primary);
  color: #FFF;
}

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

.link-btn_3FJd7--secondary:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

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

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

/* Hero */

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

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

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

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

.splash_OEnWf-content {
  order: 2;
}

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

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

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

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

.splash_OEnWf-subtitle {
  font-size: 17px;
  color: var(--clr-muted);
  margin-bottom: 2rem;
  max-width: 440px;
  line-height: 1.7;
}

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

.splash_OEnWf-image {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splash_OEnWf-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: 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.06);
}

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

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

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


/* ==================== SECTIONS ==================== */

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

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

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

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

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

.block_GZr47-head p {
  font-size: 16px;
  color: var(--clr-muted);
  max-width: 480px;
  margin-inline: auto;
}

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

.block_GZr47-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--clr-muted);
  margin-bottom: 48px;
  max-width: 500px;
  margin: 0 auto;
}

/*
 * Cards
 */

.panel_7Ksut {
  background: var(--clr-dark);
  border-radius: 18px;
  padding-top: 32px;
  padding-right: 28px;
  padding-bottom: 32px;
  padding-left: 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border: solid 1px rgba(255,255,255,0.06);
  transition: all 0.35s ease-in-out;
}

.panel_7Ksut:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgb(0 0 0 / 40%);
}


/* -- BONUS CARDS -- */

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

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

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

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

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

.panel_7Ksut--bonus p {
  color: var(--clr-muted);
  font-size: 14px;
  line-height: 170%;
  margin-bottom: 16px;
}

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



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

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

.panel_7Ksut--game:hover {
  border-color: var(--clr-primary);
}

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

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

.panel_7Ksut--game:hover .game-thumb img {
  transform: scale(1.03) rotate(1deg);
}

.game-info {
  padding-top: 14px;
  padding-right: 16px;
  padding-bottom: 14px;
  padding-left: 16px;
}

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

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

.panel_7Ksut-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

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

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

.panel_7Ksut-name {
  font-weight: 600;
  color: #FFF;
}


/*
 * Provider Cards
 */

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

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

.panel_7Ksut--provider:hover {
  border-color: var(--clr-primary);
}

.panel_7Ksut--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.6) contrast(0.8);
  transition: all 0.35s ease-in-out;
}

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

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

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


/* -- SPLIT LAYOUT -- */

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

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

.split-block--dark {
  background: var(--clr-darker);
  color: #FFF;
}

.split-block--dark .block_GZr47-tag {
  color: var(--clr-accent);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.review-item {
  padding: 1.25rem 0px;
  border: solid 1px 0 0 0 rgba(255,255,255,0.06);
}

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

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

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

.review-who {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--clr-light);
}

.panel_7Ksut--review p {
  color: var(--clr-muted);
  font-style: italic;
  line-height: 170%;
}

/* 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(--border-radius-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(--clr-accent);
  text-transform: none;
  font-size: 13px;
}

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

.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-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  background: var(--clr-primary-alpha);
  border-radius: var(--border-radius-full);
  font-size: 13px;
  color: var(--clr-primary);
}


/* -- ABOUT -- */

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

.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: 16px;
  color: var(--clr-light);
}

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

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

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


/*
 * CTA Blocks
 */

.block_GZr47--cta {
  text-align: center;
  padding-top: 80px;
  padding-right: 0;
  padding-bottom: 80px;
  padding-left: 0;
  background: linear-gradient(to bottom, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.block_GZr47--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  opacity: 0.2;
}

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

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

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

.block_GZr47--cta .link-btn_3FJd7 {
  position: relative;
  background: #FFF;
  color: var(--clr-primary);
}

.block_GZr47--cta .link-btn_3FJd7:hover {
  background: rgba(255,255,255,0.2);
  color: #FFF;
}

/* ===== SEO Text ===== */

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

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

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

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

.block_GZr47--seo-text {
  background: var(--clr-dark);
}

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

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

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

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


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

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

.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(--clr-light);
  text-align: left;
  transition: color 0.35s ease-in-out;
}

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

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

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

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

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

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

/* --- Info Table --- */

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

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

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

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

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

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

/* --- CTA Bottom --- */

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

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

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

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

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

/* FOOTER */

.bottom-bar_GhXv9 {
  background: var(--clr-darker);
  padding: 60px 0 0;
}

.bottom-bar_GhXv9-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 3rem;
}

.bottom-bar_GhXv9-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #FFF;
}

.bottom-bar_GhXv9-col p {
  color: rgba(255,255,255,0.5);
  line-height: 1.7em;
  font-size: 0.875rem;
}

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

.bottom-bar_GhXv9-nav a {
  color: rgb(255 255 255 / 60%);
  font-size: 0.875rem;
}

.bottom-bar_GhXv9-nav a:hover {
  color: #FFF;
}

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

.cert-logos img {
  height: 50px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.35s ease-in-out;
}

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

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

.responsible-gaming h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: rgb(255 255 255 / 50%);
}

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

.resp-logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.resp-logos a {
  display: block;
  transition: all 0.35s ease-in-out;
}

.resp-logos a:hover {
  transform: translateY(-3px);
}

.resp-logos img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.35s ease-in-out;
}

.resp-logos a:hover img {
  filter: none;
  opacity: 1;
}

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

.bottom-bar_GhXv9-bottom p {
  font-size: 13px;
  color: rgb(255 255 255 / 40%);
  margin-bottom: 8px;
}

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

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

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

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

/*! Hamburger */

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

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--clr-light);
  transition: all 0.35s ease-in-out;
  border-radius: 2px;
}

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

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

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

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


/*
 * Responsive - Tablet
 */

@media (max-width: 1020px) {
  .splash_OEnWf .wrapper_e6mfc {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

  .bottom-bar_GhXv9-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

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

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

/* ==================== RESPONSIVE - MOBILE ==================== */

@media (max-width: 47.9375em) {
  .nav-wrap_Rs6vL .wrapper_e6mfc {
    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(--clr-light);
    text-decoration: none;
    white-space: nowrap;
  }

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

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

  .nav-wrap_Rs6vL-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .menu_aDq6I {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--clr-dark);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.35s ease-in-out;
    box-shadow: -8px 0 32px rgb(0 0 0 / 50%);
    border-left: 2px solid var(--clr-primary);
    z-index: 1001;
    gap: 0px;
    overflow-y: auto;
  }

  .menu_aDq6I.active {
    right: 0;
  }

  .menu_aDq6I a {
    font-size: 18px;
    padding: 0.8rem 0px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--clr-light);
  }

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

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

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

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

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

@media (max-width: 480px) {
  .wrapper_e6mfc { padding: 0 16px; }
  .splash_OEnWf-ctas { flex-direction: column; }
  .splash_OEnWf-ctas .link-btn_3FJd7 { width: 100%; }
  .highlights {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .collection_h5MGj--games { grid-template-columns: 1fr 1fr; }
  .collection_h5MGj--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;
  }

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

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

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