/*!
 * Stylesheet: Neon Green
 * Fonts: Poppins / Open Sans
 * Date: 2026-08-12T19:57:04.009Z
 */

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

:root {
  /* Colors */
  --theme-accent: #86efac;
  --theme-dark: #052e16;
  --theme-secondary: #4ade80;
  --theme-secondary-alpha: #4ade8040;
  --theme-darker: #021a0d;
  --theme-primary: #22c55e;
  --theme-muted: #86efac;
  --theme-light: #f0fdf4;
  --theme-primary-alpha: #22c55e40;
  --theme-text: #dcfce7;

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

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

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

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


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

.jump-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background: var(--theme-primary);
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  z-index: 10000;
  transition: top .3s ease-in-out;
}

.jump-link:focus {
  top: 10px;
  outline: 3px solid var(--theme-accent);
  outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--theme-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ANIMATIONS */

@keyframes fadeIn-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

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

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


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--theme-darker);
  color: var(--theme-text);
  line-height: 1.6em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

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

/* -- CONTAINER -- */

.box_wOL81 {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-right: 24px;
  padding-bottom: 0;
  padding-left: 24px;
}


/* ===== Header ===== */

.site-header_z4XAr {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0px;
  z-index: 1000;
  padding: 16px 0 16px 0px;
  background: rgb(0 0 0 / 85%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all .3s ease-in-out;
}

.site-header_z4XAr.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  padding-block: 12px;
  padding-inline: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.site-header_z4XAr .box_wOL81 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header_z4XAr .logo {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--theme-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.main-nav_UUN7c a {
  font-weight: 500;
  color: var(--theme-text);
  opacity: 0.8;
  transition: all .3s ease-in-out;
}

.main-nav_UUN7c a:hover {
  opacity: 1;
  color: var(--theme-accent);
}

.site-header_z4XAr-actions {
  display: flex;
  gap: 0.75rem;
}


/* --- Buttons --- */

.button_vgHmm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 12px;
  padding-inline: 28px;
  font-family: var(--ff-body);
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all .3s ease-in-out;
  text-transform: none;
  letter-spacing: 0.5px;
}

.button_vgHmm--primary {
  background: linear-gradient(125deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
  border: none;
  color: #ffffff;
}

.button_vgHmm--primary:hover {
  transform: translate(0, -3px);
  box-shadow: var(--sh-elevated);
}

.button_vgHmm--secondary {
  background: transparent;
  border: 2px solid var(--theme-text);
  color: var(--theme-text);
}

.button_vgHmm--secondary:hover {
  background: var(--theme-text);
  color: var(--theme-dark);
}

.button_vgHmm--large {
  padding-block: 18px;
  padding-inline: 40px;
  font-size: 17px;
}

.button_vgHmm--small {
  padding-top: 8px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 14px;
}

/* Hero */

.banner_CAYYw {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(125deg, var(--theme-dark) 0%, var(--theme-darker) 50%, var(--theme-dark) 100%);
  position: relative;
  overflow: hidden;
}

.banner_CAYYw::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, var(--theme-primary-alpha) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, var(--theme-secondary-alpha) 0%, transparent 40%);
  pointer-events: none;
}

.banner_CAYYw .box_wOL81 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner_CAYYw-content {
  order: 2;
}

.banner_CAYYw-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--theme-primary-alpha);
  border: 1px solid var(--theme-primary);
  border-radius: var(--border-radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-accent);
  margin-bottom: 24px;
}

.banner_CAYYw-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.banner_CAYYw-subtitle {
  font-size: 20px;
  color: var(--theme-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.banner_CAYYw-subtitle strong {
  color: var(--theme-accent);
}

.banner_CAYYw-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.banner_CAYYw-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.banner_CAYYw-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--theme-muted);
}

.banner_CAYYw-feature span {
  font-size: 19px;
}

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

.banner_CAYYw-image img {
  width: 100%;
  max-width: 450px;
  max-height: 500px;
  object-fit: contain;
}



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

.segment_3XSqW-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
  color: #FFF;
}

.segment_3XSqW-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--theme-muted);
  margin-bottom: 48px;
  max-width: 560px;
  margin-inline: auto;
}


/*
 * Cards
 */

.card_48iXk {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-lg);
  padding: var(--pad-element);
  transition: all .3s ease-in-out;
}

.card_48iXk:hover {
  transform: scale(1.03);
  box-shadow: var(--sh-elevated);
  border-color: var(--theme-primary);
}

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

.card_48iXk--bonus {
  text-align: center;
  padding: 40px 30px;
}

.card_48iXk-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.card_48iXk--bonus h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--theme-accent);
}

.card_48iXk--bonus p {
  color: var(--theme-muted);
  margin-bottom: 24px;
  line-height: 170%;
}

.listing_is3EB--games {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--grid-gap);
}

.card_48iXk--game {
  position: relative;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.card_48iXk--game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}

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

.card_48iXk-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  place-content: center;
  place-items: center;
  opacity: 0;
  transition: opacity .3s ease-in-out;
}

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

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

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

.listing_is3EB--providers {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--grid-gap);
}

.card_48iXk--provider {
  display: flex;
  place-content: center;
  place-items: center;
  padding: 0px;
  overflow: hidden;
  aspect-ratio: 2.5/1;
  position: relative;
}

.card_48iXk--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all .3s ease-in-out;
}

.card_48iXk--provider:hover img {
  filter: grayscale(0%);
  transform: scale(1.07);
}

.card_48iXk--provider span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--theme-muted);
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity .3s ease-in-out;
}

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

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

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

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

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

.reviewer-info strong {
  display: block;
  color: #FFF;
}

.stars {
  color: var(--theme-accent);
  font-size: 14px;
}

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

/** About / Content Layout **/

.info-layout {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

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

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

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

.info-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--theme-accent);
}

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

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

.info-visual img {
  width: 100%;
  max-width: 380px;
  max-height: 320px;
  object-fit: contain;
}


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

.segment_3XSqW--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_3XSqW--cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgb(255,255,255);
  margin-bottom: 1rem;
  position: relative;
}

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

.segment_3XSqW--cta .button_vgHmm {
  position: relative;
  background: #ffffff;
  color: var(--theme-primary);
}

.segment_3XSqW--cta .button_vgHmm:hover {
  background: var(--theme-dark);
  color: #FFF;
}

/*
 * Payments Table
 */

.payments-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

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

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

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

.payments-table th {
  font-weight: 600;
  color: var(--theme-accent);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.payments-table tbody tr {
  border: 0 0 1px 0 solid rgba(255,255,255,0.05);
  transition: background .3s ease-in-out;
}

.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-block: 4px;
  padding-inline: 12px;
  background: var(--theme-primary-alpha);
  border-radius: var(--border-radius-full);
  font-size: 0.813rem;
  color: var(--theme-accent);
}

/** SEO Text **/

.seo-block {
  margin-top: 48px;
  padding: 40px;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--border-radius-lg);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.05);
}

.seo-block h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--theme-accent);
}

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

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

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

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

.seo-content h2 {
  font-size: 40px;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.seo-content h3 {
  font-size: 28px;
  margin: 32px 0 16px;
  color: var(--theme-accent);
}

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


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

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

.faq-item {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  margin-bottom: 12px;
  background: rgb(255 255 255 / 2%);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  transition: color .3s ease-in-out;
}

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

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--theme-primary);
  transition: transform .3s ease-in-out;
}

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

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

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

.faq-answer p {
  padding-top: 0;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  color: var(--theme-muted);
  line-height: 1.8;
}


/* -- INFO TABLE -- */

.info-table {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.info-table tr {
  border: 0 0 1px 0 solid rgba(255, 255, 255, 0.05);
}

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

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

.info-table th {
  width: 40%;
  font-weight: 600;
  color: var(--theme-accent);
  background: rgba(255,255,255,0.02);
}

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


/** Footer **/

.footer_Vrmq2 {
  background: var(--theme-darker);
  padding: 80px 0px 0px 0;
  border: 1px 0 0 0 solid rgba(255,255,255,0.05);
}

.footer_Vrmq2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3.75rem;
  margin-bottom: 60px;
}

.footer_Vrmq2-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--theme-accent);
}

.footer_Vrmq2-col p {
  color: var(--theme-muted);
  line-height: 1.8;
}

.footer_Vrmq2-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer_Vrmq2-nav a {
  color: var(--theme-muted);
}

.footer_Vrmq2-nav a:hover {
  color: var(--theme-accent);
}

.badge-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

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

.responsible-gaming h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--theme-muted);
}

.responsible-text {
  font-size: 0.875rem;
  color: var(--theme-muted);
  opacity: 0.8;
  margin-bottom: 20px;
}

.safe-play {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.safe-play a {
  display: block;
  transition: all .3s ease-in-out;
}

.safe-play a:hover {
  transform: translateY(-5px);
}

.safe-play img {
  height: 40px;
  filter: grayscale(80%) brightness(1.5);
  transition: all .3s ease-in-out;
}

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

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

.footer_Vrmq2-bottom p {
  font-size: 0.875rem;
  color: var(--theme-muted);
  opacity: 0.7;
  margin-bottom: 8px;
}

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

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

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

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


/*
 * Hamburger & Mobile
 */

.mobile-nav-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  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;
}

.mobile-nav-btn span {
  width: 30px;
  height: 2px;
  background: var(--theme-accent);
  transition: all .3s ease-in-out;
  border-radius: 2px;
}

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

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

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

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

/*
 * Responsive - Tablet
 */

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

  .banner_CAYYw-content { order: 1; }
  .banner_CAYYw-image { order: 2; }
  .banner_CAYYw-subtitle { margin-left: auto; margin-right: auto; }
  .banner_CAYYw-ctas { justify-content: center; }
  .banner_CAYYw-features { justify-content: center; }

  .listing_is3EB--bonuses,
  .listing_is3EB--games,
  .listing_is3EB--providers { grid-template-columns: repeat(2, 1fr); }

  .listing_is3EB--reviews { grid-template-columns: 1fr 1fr; }

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

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

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

  .badge-strip { justify-content: center; }
}



@media (max-width: 48rem) {
  .site-header_z4XAr {
    padding: 0;
  }

  .site-header_z4XAr .box_wOL81 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 0.75rem;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    font-family: var(--ff-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--theme-accent);
    text-transform: none;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-cta {
    display: block;
    flex: 1;
    max-width: 180px;
    padding: 10px 16px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px var(--theme-primary-alpha);
  }

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

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

  .main-nav_UUN7c {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: var(--theme-darker);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right .3s ease-in-out;
    box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
    border-left: 2px solid var(--theme-primary);
    z-index: 1001;
    gap: 0px;
  }

  .main-nav_UUN7c.active {
    right: 0;
  }

  .main-nav_UUN7c a {
    font-size: 19px;
    padding: 1rem 0px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
  }

  .listing_is3EB--bonuses,
  .listing_is3EB--games,
  .listing_is3EB--reviews {
    grid-template-columns: 1fr;
  }

  .listing_is3EB--providers {
    grid-template-columns: repeat(2, 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;
  }

  .segment_3XSqW-title { font-size: 2rem; }
  .banner_CAYYw-content h1 { font-size: 2.5rem; }
  .banner_CAYYw { padding-top: 100px; }
}

@media (max-width: 30rem) {
  .box_wOL81 { padding: 0 16px; }
  .segment_3XSqW { padding: 60px 0; }
  .banner_CAYYw-ctas { flex-direction: column; }
  .banner_CAYYw-ctas .button_vgHmm { width: 100%; }

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