

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

:root {
  /* Colors */
  --theme-secondary-alpha: #f9731640;
  --theme-secondary: #f97316;
  --theme-primary: #dc2626;
  --theme-light: #fef2f2;
  --theme-muted: #f87171;
  --theme-text: #fecaca;
  --theme-primary-alpha: #dc262640;
  --theme-darker: #0d0505;
  --theme-accent: #fb923c;
  --theme-dark: #1a0a0a;

  /* Typography */
  --typo-body: 'Rubik', sans-serif;
  --typo-heading: 'Teko', sans-serif;

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

  /* Border Radius */
  --rad-md: 12px;
  --rad-sm: 8px;
  --rad-full: 8px;
  --rad-lg: 16px;

  /* Shadows */
  --box-shadow-elevated: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
  --box-shadow-card: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
  --box-shadow-glow: 0 0 40px;
}



/* BASE */

*, *::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(--theme-primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--rad-md);
  z-index: 10000;
  transition: top 0.25s ease-in;
}

.skip-nav: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 play-fadeIn {
  from { opacity: 0; }
  to { 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); }
}



html {
  scroll-behavior: smooth;
}

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

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

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

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



/* CONTAINER */

.box_mYjhn {
  max-width: 1200px;
  margin-inline: auto;
  padding-top: 0;
  padding-right: 24px;
  padding-bottom: 0;
  padding-left: 24px;
}



/*
 * Header
 */

.site-header_v42ij {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  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 0.25s ease-in;
}

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

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

.site-header_v42ij .logo {
  font-family: var(--typo-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--theme-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links_Wo03E {
  display: flex;
  gap: 32px;
}

.nav-links_Wo03E a {
  font-weight: 500;
  color: var(--theme-text);
  opacity: 0.8;
  transition: all 0.25s ease-in;
}

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

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



.btn_5ureQ {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 28px;
  padding-bottom: 12px;
  padding-left: 28px;
  font-family: var(--typo-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--rad-md);
  cursor: pointer;
  transition: all 0.25s ease-in;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.btn_5ureQ--primary {
  background: var(--theme-primary);
  border: none;
  color: #FFFFFF;
}

.btn_5ureQ--primary:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-elevated);
}

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

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

.btn_5ureQ--large {
  padding: 18px 40px;
  font-size: 17px;
}

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



/* HERO */

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

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

.intro_8FIq6 .box_mYjhn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro_8FIq6-content {
  order: 2;
}

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

.intro_8FIq6-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
  text-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.intro_8FIq6-subtitle {
  font-size: 1.25rem;
  color: var(--theme-muted);
  margin-bottom: 2rem;
  max-width: 460px;
}

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

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

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

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

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

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

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



/*
 * Sections
 */

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

.area_MSLND-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
  color: rgb(255, 255, 255);
}

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


/* -- CARDS -- */

.tile_X2Qlb {
  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(--rad-lg);
  padding: var(--element-spacing);
  transition: all 0.25s ease-in;
}

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

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

.tile_X2Qlb--bonus {
  text-align: center;
  padding-block: 40px;
  padding-inline: 30px;
}

.tile_X2Qlb-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}

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

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

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

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

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

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

.tile_X2Qlb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease-in;
}

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

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

.tile_X2Qlb-name {
  font-weight: 600;
  color: rgb(255,255,255);
}

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

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

.tile_X2Qlb--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: saturate(0) brightness(1.8);
  transition: all 0.25s ease-in;
}

.tile_X2Qlb--provider:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.05);
}

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

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

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

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

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

.reviewer-avatar {
  width: 50px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(to right, 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;
}

.tile_X2Qlb--review p {
  color: var(--theme-muted);
  font-style: italic;
  line-height: 1.7em;
}


/*! About / Content Layout */

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

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

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

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

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

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

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

.alt-media img {
  width: 100%;
  max-width: 450px;
  max-height: 320px;
  object-fit: contain;
}



.area_MSLND--cta {
  text-align: center;
  padding-block: 80px;
  padding-inline: 0;
  background: linear-gradient(125deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.area_MSLND--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.area_MSLND--cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.area_MSLND--cta p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  position: relative;
}

.area_MSLND--cta .btn_5ureQ {
  position: relative;
  background: rgb(255, 255, 255);
  color: var(--theme-primary);
}

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



/** Payments Table **/

.payments-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
}

.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--rad-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: rgb(255 255 255 / 5%);
}

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

.payments-table tbody tr {
  border: 0 0 1px 0 solid rgba(255,255,255,0.05);
  transition: background 0.25s 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-block: 4px;
  padding-inline: 12px;
  background: var(--theme-primary-alpha);
  border-radius: var(--rad-full);
  font-size: 0.813rem;
  color: var(--theme-accent);
}



/* SEO Text */

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

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

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

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

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

.seo-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: 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: 820px;
  margin-inline: auto;
}

.faq-item {
  border: rgb(255 255 255 / 8%) 1px solid;
  border-radius: var(--rad-md);
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.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: rgb(255, 255, 255);
  text-align: left;
  transition: color 0.25s ease-in;
}

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

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

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

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

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

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



/*
 * Info Table
 */

.info-table {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,0.02);
  border-radius: var(--rad-lg);
  overflow: hidden;
}

.info-table tr {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: 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);
}



.end-section_ydR76 {
  background: var(--theme-darker);
  padding-top: 80px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  border: 1px 0 0 0 solid rgba(255, 255, 255, 0.05);
}

.end-section_ydR76-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.75rem;
  margin-bottom: 60px;
}

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

.end-section_ydR76-col p {
  color: var(--theme-muted);
  line-height: 180%;
}

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

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

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

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

.cert-logos img {
  height: 50px;
  filter: grayscale(100%) brightness(2);
  transition: all 0.25s ease-in;
}

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

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

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

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

.safe-play {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

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

.safe-play img {
  height: 40px;
  filter: grayscale(100%) brightness(2);
  transition: all 0.25s ease-in;
}

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

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

.end-section_ydR76-bottom p {
  font-size: 14px;
  color: var(--theme-muted);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

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

.footer-update {
  margin-top: 16px;
  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 */

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

.burger span {
  width: 24px;
  height: 2px;
  background: var(--theme-accent);
  transition: all 0.25s ease-in;
  border-radius: 2px;
}

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

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

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

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




@media (max-width: 64rem) {
  .intro_8FIq6 .box_mYjhn {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

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

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

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


/* Responsive - Mobile */

@media (max-width: 47.9375rem) {
  .site-header_v42ij {
    padding: 0px;
  }

  .site-header_v42ij .box_mYjhn {
    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(--typo-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--theme-accent);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-cta {
    display: block;
    flex: 1;
    max-width: 180px;
    padding: 10px 16px;
    background: linear-gradient(to bottom right, 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.3px;
    border-radius: var(--rad-md);
    box-shadow: 0 4px 15px var(--theme-primary-alpha);
  }

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

  .burger {
    display: flex;
  }

  .nav-links_Wo03E {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--theme-darker);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.25s ease-in;
    box-shadow: -8px 0 32px rgba(0,0,0,0.7);
    border-left: 2px solid var(--theme-primary);
    z-index: 1001;
    gap: 0;
  }

  .nav-links_Wo03E.active {
    right: 0px;
  }

  .nav-links_Wo03E a {
    font-size: 1.188rem;
    padding: 1rem 0px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

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

  .listing_Vp9BQ--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;
  }

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

@media (max-width: 29.9375rem) {
  .box_mYjhn { padding: 0 16px; }
  .area_MSLND { padding: 60px 0px; }
  .intro_8FIq6-ctas { flex-direction: column; }
  .intro_8FIq6-ctas .btn_5ureQ { width: 100%; }

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