/* Auto-generated stylesheet | Neon Green | Clean Geometric */

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

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

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

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

  /* Border Radius */
  --rounded-lg: 8px;
  --rounded-full: 4px;
  --rounded-sm: 4px;
  --rounded-md: 6px;

  /* Shadows */
  --shadow-elevated: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
  --shadow-card: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
  --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-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background: var(--clr-primary);
  color: rgb(255,255,255);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--rounded-md);
  z-index: 10000;
  transition: top 250ms 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-anim {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideUp-motion {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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


html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 120%;
}

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

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


/* Container */

.container_IuJ29 {
  max-width: 80rem;
  margin: 0 auto;
  padding-top: 0;
  padding-right: 24px;
  padding-bottom: 0;
  padding-left: 24px;
}

/** Header **/

.masthead_M51mD {
  position: fixed;
  top: 0;
  left: 0;
  right: 0px;
  z-index: 1000;
  padding-top: 16px;
  padding-right: 0;
  padding-bottom: 16px;
  padding-left: 0px;
  background: rgba(0,0,0,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 250ms ease-in-out;
}

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

.masthead_M51mD .container_IuJ29 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.masthead_M51mD .logo {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.menu_YfSVz a {
  font-weight: 500;
  color: var(--clr-text);
  opacity: 0.8;
  transition: all 250ms ease-in-out;
}

.menu_YfSVz a:hover {
  opacity: 1;
  color: var(--clr-accent);
}

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

/* ==================== BUTTONS ==================== */

.btn_3zH8Y {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 28px;
  padding-bottom: 12px;
  padding-left: 28px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--rounded-md);
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn_3zH8Y--primary {
  background: var(--clr-primary);
  border: none;
  box-shadow: 0 0 20px var(--clr-primary-alpha);
  color: rgb(255, 255, 255);
}

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

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

.btn_3zH8Y--secondary:hover {
  background: var(--clr-text);
  color: var(--clr-dark);
}

.btn_3zH8Y--large {
  padding: 18px 40px;
  font-size: 1.063rem;
}

.btn_3zH8Y--small {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/*
 * Hero
 */

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

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

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

.splash_INAqC-content {
  order: 2;
}

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

.splash_INAqC-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);
}

.splash_INAqC-subtitle {
  font-size: 1.25rem;
  color: var(--clr-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.splash_INAqC-subtitle strong {
  color: var(--clr-accent);
}

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

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

.splash_INAqC-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--clr-muted);
}

.splash_INAqC-feature span {
  font-size: 1.188rem;
}

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

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


/* --- Sections --- */

.segment_KSJek {
  padding: var(--sp-section) 0;
}

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

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


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

.tile_0uxGT {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: var(--rounded-lg);
  padding: var(--sp-element);
  transition: all 250ms ease-in-out;
}

.tile_0uxGT:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-elevated);
  border-color: var(--clr-primary);
}

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

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

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

.tile_0uxGT--bonus h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  color: var(--clr-accent);
}

.tile_0uxGT--bonus p {
  color: var(--clr-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7em;
}

.grid_9uadW--games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-gap);
}

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

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

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

.tile_0uxGT-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  place-content: center;
  place-items: center;
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}

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

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

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

.grid_9uadW--providers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-gap);
}

.tile_0uxGT--provider {
  display: flex;
  place-content: center;
  place-items: center;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 5/2;
  position: relative;
}

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

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

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

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

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

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

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

.reviewer-avatar {
  width: 48px;
  height: 52px;
  border-radius: 40%;
  background: linear-gradient(160deg, var(--clr-primary), var(--clr-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: rgb(255,255,255);
}

.reviewer-info strong {
  display: block;
  color: rgb(255, 255, 255);
}

.stars {
  color: var(--clr-accent);
  font-size: 0.875rem;
}

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

/* -- ABOUT / CONTENT LAYOUT -- */

.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: 2rem;
  margin-bottom: 20px;
  color: var(--clr-accent);
}

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

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

.feature-visual img {
  width: 100%;
  max-width: 400px;
  max-height: 280px;
  object-fit: contain;
}


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

.segment_KSJek--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

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

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

.segment_KSJek--cta .btn_3zH8Y {
  position: relative;
  background: #fff;
  color: var(--clr-primary);
}

.segment_KSJek--cta .btn_3zH8Y:hover {
  background: var(--clr-dark);
  color: white;
}

/*! 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(--rounded-lg);
  overflow: hidden;
}

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

.payments-table thead {
  background: rgb(255 255 255 / 5%);
}

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

.payments-table tbody tr {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.05);
  transition: background 250ms ease-in-out;
}

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

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

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

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

/* SEO TEXT */

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

.seo-block h3 {
  font-size: 24px;
  margin-bottom: 1.25rem;
  color: var(--clr-accent);
}

.seo-block p {
  color: var(--clr-muted);
  margin-bottom: 1rem;
  line-height: 180%;
}

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

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

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

.seo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: rgb(255,255,255);
}

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

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



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

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

.faq-question {
  width: 100%;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.063rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  transition: color 250ms ease-in-out;
}

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

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

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

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

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

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

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

.info-table {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--rounded-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-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  text-align: left;
}

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

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


/* ===== Footer ===== */

.end-section_EbBCY {
  background: var(--clr-darker);
  padding: 80px 0px 0px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.05);
}

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

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

.end-section_EbBCY-col p {
  color: var(--clr-muted);
  line-height: 1.8em;
}

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

.end-section_EbBCY-nav a {
  color: var(--clr-muted);
}

.end-section_EbBCY-nav a:hover {
  color: var(--clr-accent);
}

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

.cert-logos img {
  height: 50px;
  filter: grayscale(80%) brightness(1.5);
  transition: all 250ms ease-in-out;
}

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

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

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

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

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

.responsible-gaming a {
  display: block;
  transition: all 250ms ease-in-out;
}

.responsible-gaming a:hover {
  transform: translateY(-2px);
}

.responsible-gaming img {
  height: 40px;
  opacity: 0.4;
  transition: all 250ms ease-in-out;
}

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

.end-section_EbBCY-bottom {
  padding-block: 24px;
  padding-inline: 0;
  text-align: center;
}

.end-section_EbBCY-bottom p {
  font-size: 14px;
  color: var(--clr-muted);
  opacity: 0.7;
  margin-bottom: 8px;
}

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

.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: 3px;
  background: var(--clr-accent);
  transition: all 250ms 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: 63.9375rem) {
  .splash_INAqC .container_IuJ29 {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .feature-block { grid-template-columns: 1fr; }
  .feature-block--alt { direction: ltr; }

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

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

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

/* RESPONSIVE - MOBILE */

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

  .masthead_M51mD .container_IuJ29 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 12px;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-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, var(--clr-primary), var(--clr-secondary));
    color: #ffffff;
    font-size: 0.813rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.8px;
    border-radius: var(--rounded-md);
    box-shadow: 0 4px 15px var(--clr-primary-alpha);
  }

  .masthead_M51mD-actions {
    display: none;
  }

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

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

  .menu_YfSVz.active {
    right: 0;
  }

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

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

  .grid_9uadW--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_KSJek-title { font-size: 2rem; }
  .splash_INAqC-content h1 { font-size: 2.5rem; }
  .splash_INAqC { padding-top: 100px; }
}

@media (max-width: 480px) {
  .container_IuJ29 { padding: 0px 16px; }
  .segment_KSJek { padding: 60px 0px; }
  .splash_INAqC-ctas { flex-direction: column; }
  .splash_INAqC-ctas .btn_3zH8Y { width: 100%; }

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