/* Auto-generated stylesheet | Midnight Gold | Modern Sharp */

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

:root {
  --color-text: #fef08a;
  --color-secondary-alpha: #eab30840;
  --color-muted: #facc15;
  --color-secondary: #eab308;
  --color-light: #fefce8;
  --color-primary: #ca8a04;
  --color-primary-alpha: #ca8a0440;
  --color-darker: #0d0b02;
  --color-dark: #1a1505;
  --color-accent: #fde047;

  --body-font: 'Inter', sans-serif;
  --heading-font: 'Bebas Neue', sans-serif;

  --pad-element: 20px;
  --pad-section: 50px;
  --grid-gap: 20px;
  --rad-full: 8px;
  --rad-lg: 16px;
  --rad-sm: 8px;
  --rad-md: 12px;
  --shadow-glow: 0 0 50px;
  --shadow-sm: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.5);
}


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

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background: var(--color-primary);
  color: #FFF;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--rad-md);
  z-index: 10000;
  transition: top 350ms ease-out;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--color-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-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes play-pulse {
  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;
}

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

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

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

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

/*
 * Container
 */

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

/*! Header */

.nav-wrap_o435I {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  padding: 16px 0 16px 0px;
  background: rgb(0 0 0 / 85%);
  backdrop-filter: blur(12px);
  transition: all 350ms ease-out;
}

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

.nav-wrap_o435I .wrapper_J5tiy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrap_o435I .logo {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.main-nav_OAjBP a {
  font-weight: 500;
  color: var(--color-text);
  opacity: 0.8;
  transition: all 350ms ease-out;
}

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

.nav-wrap_o435I-actions {
  display: flex;
  gap: 12px;
}

/* Buttons */

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

.cta_2vmzz--primary {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.cta_2vmzz--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg);
  background: var(--color-primary);
  color: #ffffff;
}

.cta_2vmzz--secondary {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--color-text);
  color: var(--color-text);
}

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

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

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

/* --- Hero --- */

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

.banner_kpn61::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, var(--color-primary-alpha) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, var(--color-secondary-alpha) 0%, transparent 40%);
  pointer-events: none;
}

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

.banner_kpn61-content {
}

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

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

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

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

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

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

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

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

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

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

/* SECTIONS */

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

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

.zone_7OPc8-subtitle {
  text-align: center;
  font-size: 1.063rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin: 0 auto;
}

/* CARDS */

.item_J0Ikg {
  background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgb(255 255 255 / 2%) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rad-lg);
  padding: var(--pad-element);
  transition: all 350ms ease-out;
}

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

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

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

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

.item_J0Ikg--bonus h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-accent);
}

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

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

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

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

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

.item_J0Ikg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 350ms ease-out;
}

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

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

.item_J0Ikg-name {
  font-weight: 600;
  color: #fff;
}

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

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

.item_J0Ikg--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  transition: all 350ms ease-out;
}

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

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

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

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

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

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

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

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

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

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

/*! About / Zigzag */

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

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

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

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

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

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

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

.zigzag-image img {
  width: 100%;
  max-width: 400px;
  max-height: 300px;
  object-fit: contain;
}

/* -- CTA BLOCKS -- */

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

.zone_7OPc8--cta::before {
  content: '';
  position: absolute;
  inset: 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.3;
}

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

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

.zone_7OPc8--cta .cta_2vmzz {
  position: relative;
  background: rgb(255, 255, 255);
  color: var(--color-primary);
}

.zone_7OPc8--cta .cta_2vmzz:hover {
  background: var(--color-dark);
  color: rgb(255, 255, 255);
}

/* ===== 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-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(--color-accent);
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0.5px;
}

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

.payments-table tbody tr:hover {
  background: rgb(255 255 255 / 3%);
}

.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(--color-primary-alpha);
  border-radius: var(--rad-full);
  font-size: 13px;
  color: var(--color-accent);
}

/* ==================== SEO TEXT ==================== */

.section-content {
  margin-top: 3rem;
  padding: 40px;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--rad-lg);
  border: 1px solid rgb(255 255 255 / 5%);
}

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

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

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

.zone_7OPc8--seo-text {
  background: var(--color-dark);
}

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

.seo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #FFF;
}

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

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


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

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

.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: rgb(255,255,255);
  text-align: left;
  transition: all 350ms ease-out;
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 350ms ease-out;
}

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

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

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

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

/** Info Table **/

.info-table {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0px;
  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-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  text-align: left;
}

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

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

/* --- Footer --- */

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

.colophon_4bXQ1-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.75rem;
  margin-bottom: 3.75rem;
}

.colophon_4bXQ1-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}

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

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

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

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

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

.trust-badges img {
  height: 50px;
  filter: grayscale(100%) brightness(2);
  opacity: 0.7;
  transition: all 350ms ease-out;
}

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

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

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

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

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

.responsible-logos a {
  display: block;
  transition: all 350ms ease-out;
}

.responsible-logos a:hover {
  transform: translate(0, -3px);
}

.responsible-logos img {
  height: 40px;
  filter: grayscale(100%) brightness(2);
  opacity: 0.5;
  transition: all 350ms ease-out;
}

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

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

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

.colophon_4bXQ1-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
 */

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

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--color-accent);
  transition: all 350ms ease-out;
  border-radius: 2px;
}

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

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

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

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


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

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

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

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

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

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

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

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

/** Responsive - Mobile **/

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

  .nav-wrap_o435I .wrapper_J5tiy {
    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(--heading-font);
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--color-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(125deg, var(--color-primary), var(--color-secondary));
    color: rgb(255,255,255);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: var(--rad-md);
    box-shadow: 0 4px 15px var(--color-primary-alpha);
  }

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

  .hamburger {
    display: flex;
  }

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

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

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

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

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

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

@media (max-width: 30em) {
  .wrapper_J5tiy { padding: 0 16px; }
  .zone_7OPc8 { padding: 60px 0px; }
  .banner_kpn61-ctas { flex-direction: column; }
  .banner_kpn61-ctas .cta_2vmzz { width: 100%; }

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