/*!
 * Stylesheet: Rose Gold
 * Fonts: Rajdhani / Exo 2
 * Date: 2026-09-05T12:16:19.310Z
 */

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

:root {
  --c-accent: #fda4af;
  --c-secondary: #fb7185;
  --c-text: #ffe4e6;
  --c-primary-alpha: #e11d4840;
  --c-muted: #fecdd3;
  --c-dark: #1c0a10;
  --c-primary: #e11d48;
  --c-darker: #0e0508;
  --c-secondary-alpha: #fb718540;
  --c-light: #fff1f2;

  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;

  --section-space: 50px;
  --element-space: 20px;
  --item-gap: 20px;
  --rounded-md: 20px;
  --rounded-sm: 12px;
  --rounded-lg: 28px;
  --rounded-full: 50px;
  --sh-glow: 0 0 30px;
  --sh-card: 0 4px 20px rgba(0,0,0,0.25);
  --sh-elevated: 0 8px 30px rgba(0,0,0,0.35);
}

/* BASE */

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

.skip-to-main {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background: var(--c-primary);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--rounded-full);
  z-index: 10000;
  transition: top .3s ease-in;
}

.skip-to-main: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 slideUp-up {
  0% { opacity: 0; transform: translateY(1.5rem); }
  100% { opacity: 1; transform: translateY(0); }
}

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

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


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

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

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

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

/* --- Container --- */

.wrapper_1XsSO {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px;
}



.top-bar_wDN6n {
  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_wDN6n.scrolled {
  background: rgba(0,0,0,0.8);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.top-bar_wDN6n .logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-light);
  letter-spacing: -0.02em;
}

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

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

.navigation_BqaoJ a {
  font-weight: 500;
  color: var(--c-muted);
  font-size: 0.875rem;
  transition: color .3s ease-in;
}

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

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

/* -- BUTTONS -- */

.btn_Hbnmn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 28px;
  padding-bottom: 12px;
  padding-left: 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s ease-in;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.btn_Hbnmn--primary {
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  border: none;
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--c-primary-alpha);
}

.btn_Hbnmn--primary:hover {
  transform: translate(0, -3px);
  box-shadow: 0 8px 25px var(--c-primary-alpha);
}

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

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

.btn_Hbnmn--large {
  padding-top: 16px;
  padding-right: 36px;
  padding-bottom: 16px;
  padding-left: 36px;
  font-size: 1rem;
}

.btn_Hbnmn--small {
  padding-block: 8px;
  padding-inline: 20px;
  font-size: 0.813rem;
}

/* ==================== HERO ==================== */

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

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

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

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

.showcase_U3RsR-content {
}

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

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

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

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

.showcase_U3RsR-subtitle {
  font-size: 17px;
  color: var(--c-muted);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 170%;
}

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

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

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

/* STATS BAR */

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

.key-stat {
  text-align: center;
  padding-block: 32px;
  padding-inline: 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(--c-light);
  letter-spacing: -1px;
}

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

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


/* --- Sections --- */

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

.segment_ncgC4--gray {
  background: rgba(255,255,255,0.04);
}

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

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

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

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

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

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

/* CARDS */

.card_0xYPx {
  background: var(--c-dark);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all .3s ease-in;
}

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


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

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

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

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

.card_0xYPx--bonus p {
  color: var(--c-muted);
  font-size: 0.875rem;
  line-height: 170%;
  margin-bottom: 16px;
}

.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: 1rem;
}


/* ==================== GAME CARDS ==================== */

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

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

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

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

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

.card_0xYPx--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(--c-light);
}

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

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

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

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

.card_0xYPx-name {
  font-weight: 600;
  color: #FFFFFF;
}


/* Provider Cards */

.listing_weFFA--providers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card_0xYPx--provider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

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

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

.card_0xYPx--provider:hover img {
  filter: brightness(1) contrast(1);
  transform: scale(1.03) rotate(1deg);
}

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

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

/* --- Split Layout --- */

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

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

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

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

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

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

.pay-chip {
  background: rgba(255, 255, 255, 0.08);
  border: solid rgb(255 255 255 / 12%) 1px;
  border-radius: 12px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 13px;
  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(--c-dark);
  border: solid 1px rgba(255,255,255,0.07);
}

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


/*! Reviews */

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

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

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

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

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

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

.review-item {
  padding: 1.25rem 0px;
  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: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

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

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

.card_0xYPx--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: rgba(255,255,255,0.02);
  border-radius: var(--rounded-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: 0.813rem;
}

.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: rgba(255,255,255,0.03);
}

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

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

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

/*! About */

.two-col {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

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

.two-col-row--swap {
  direction: rtl;
}

.two-col-row--swap > * {
  direction: ltr;
}

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

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

.two-col-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

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


/* CTA Blocks */

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

.segment_ncgC4--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.25;
}

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

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

.segment_ncgC4--cta p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  position: relative;
}

.segment_ncgC4--cta .btn_Hbnmn {
  position: relative;
  background: #FFFFFF;
  color: var(--c-primary);
}

.segment_ncgC4--cta .btn_Hbnmn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

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

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

.seo-block h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--c-light);
}

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

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

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

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

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

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

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

/* ==================== FAQ ==================== */

.faq-list {
  max-width: 700px;
  margin: 0 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: 22px 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 .3s ease-in;
}

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

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

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

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

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

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


/* ==================== INFO TABLE ==================== */

.info-table {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: var(--c-dark);
  border-radius: var(--rounded-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.07);
}

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

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

.info-table th,
.info-table td {
  padding: 18px 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 */

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

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


/* FOOTER */

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

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

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

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

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

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

.colophon_fKQNR-nav a:hover {
  color: #FFFFFF;
}

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

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

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

.responsible-gaming {
  text-align: center;
  padding: 40px 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: rgba(255,255,255,0.5);
}

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

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

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

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

.responsible-gaming img {
  height: 40px;
  filter: saturate(0) brightness(1.8);
  transition: all .3s ease-in;
}

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

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

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

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

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

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

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


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

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

.mobile-nav-btn span {
  width: 24px;
  height: 2px;
  background: var(--c-light);
  transition: all .3s ease-in;
  border-radius: 2px;
}

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

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

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

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


/*
 * Responsive - Tablet
 */

@media (max-width: 64em) {
  .showcase_U3RsR .wrapper_1XsSO {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

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

  .two-col-row { grid-template-columns: 1fr; }
  .two-col-row--swap { direction: ltr; }

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

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

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

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


/** Responsive - Mobile **/

@media (max-width: 47.9375em) {
  .top-bar_wDN6n .wrapper_1XsSO {
    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(--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: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 4px 14px var(--c-primary-alpha);
  }

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

  .mobile-nav-btn {
    display: flex;
  }

  .navigation_BqaoJ {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--c-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(--c-primary);
    z-index: 1001;
    gap: 0;
    overflow-y: auto;
  }

  .navigation_BqaoJ.active {
    right: 0;
  }

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

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

  .listing_weFFA--bonuses { grid-template-columns: 1fr; }
  .listing_weFFA--games { grid-template-columns: repeat(2, 1fr); }
  .listing_weFFA--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_0xYPx { padding: 24px 20px; }
  .card_0xYPx--review { padding: 20px; }

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

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

@media (max-width: 30em) {
  .wrapper_1XsSO { padding: 0 16px; }
  .showcase_U3RsR-ctas { flex-direction: column; }
  .showcase_U3RsR-ctas .btn_Hbnmn { width: 100%; }
  .highlights {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .listing_weFFA--games { grid-template-columns: 1fr 1fr; }
  .listing_weFFA--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;
  }

  .card_0xYPx { padding: 20px 16px; }
  .seo-block { padding: 20px 16px; }

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

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