/*
 * Theme: Ocean Blue & Cyan
 * Typography: Industrial
 */

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

:root {
  --clr-secondary-alpha: #06b6d440;
  --clr-primary: #0ea5e9;
  --clr-secondary: #06b6d4;
  --clr-darker: #050d15;
  --clr-dark: #0a1929;
  --clr-accent: #22d3ee;
  --clr-text: #e0f2fe;
  --clr-light: #f0f9ff;
  --clr-primary-alpha: #0ea5e940;
  --clr-muted: #7dd3fc;

  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Anton', sans-serif;

  --sp-gap: 12px;
  --sp-element: 16px;
  --sp-section: 40px;
  --r-md: 16px;
  --r-sm: 4px;
  --r-full: 100px;
  --r-lg: 24px;
  --shadow-elevated: 0 4px 16px rgba(0,0,0,0.2);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 20px;
}

/** Base **/

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

.skip-to-main {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-block: 12px;
  padding-inline: 24px;
  background: var(--clr-primary);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-md);
  z-index: 10000;
  transition: top .3s ease-out;
}

.skip-to-main: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 {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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



html {
  scroll-behavior: smooth;
}

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

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

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

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

/** Container **/

.container_PdSYX {
  max-width: 1320px;
  margin: 0px auto;
  padding-block: 0;
  padding-inline: 24px;
}

/*! Header */

.site-header_FCeY2 {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 16px;
  padding-right: 0px;
  padding-bottom: 16px;
  padding-left: 0px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  transition: all .3s ease-out;
}

.site-header_FCeY2.scrolled {
  background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(20px);
  padding-top: 12px;
  padding-right: 0;
  padding-bottom: 12px;
  padding-left: 0px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.site-header_FCeY2 .logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.nav_ZYgUs a {
  font-weight: 500;
  color: var(--clr-text);
  opacity: 0.8;
  transition: all .3s ease-out;
}

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

.site-header_FCeY2-actions {
  display: flex;
  gap: 12px;
}

/*
 * Buttons
 */

.link-btn_2F3qi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .3s ease-out;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.link-btn_2F3qi--primary {
  background: var(--clr-primary);
  border: none;
  color: #FFF;
}

.link-btn_2F3qi--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-elevated);
}

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

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

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

.link-btn_2F3qi--small {
  padding: 8px 20px;
  font-size: 14px;
}

/* HERO */

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

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

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

.banner_hFk9p-content {
}

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

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

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

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

.banner_hFk9p-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

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

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

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

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

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

/* ==================== SECTIONS ==================== */

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

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

.area_ZLrM0-subtitle {
  text-align: center;
  font-size: 1.063rem;
  color: var(--clr-muted);
  margin-bottom: 48px;
  max-width: 560px;
  margin: 0px auto;
}

/* --- Cards --- */

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

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

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

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

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

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

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

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

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

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

.panel_M1jRu--game:hover img {
  transform: scale(1.08);
}

.panel_M1jRu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  place-content: center;
  place-items: center;
  opacity: 0;
  transition: opacity .3s ease-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! About / Content Layout */

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

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

.split-row--flipped {
  direction: rtl;
}

.split-row--flipped > * {
  direction: ltr;
}

.split-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--clr-accent);
}

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

.split-media {
  display: flex;
  place-content: center;
  place-items: center;
}

.split-media img {
  width: 100%;
  max-width: 420px;
  max-height: 340px;
  object-fit: contain;
}

/* CTA Blocks */

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

.area_ZLrM0--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.2;
}

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

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

.area_ZLrM0--cta .link-btn_2F3qi {
  position: relative;
  background: rgb(255, 255, 255);
  color: var(--clr-primary);
}

.area_ZLrM0--cta .link-btn_2F3qi:hover {
  background: var(--clr-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: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-lg);
  overflow: hidden;
}

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

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

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

.payments-table tbody tr {
  border: solid 0 0 1px 0 rgb(255 255 255 / 5%);
  transition: background .3s ease-out;
}

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

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

.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(--clr-primary-alpha);
  border-radius: var(--r-full);
  font-size: 0.813rem;
  color: var(--clr-accent);
}

/** SEO Text **/

.seo-text {
  margin-top: 3rem;
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.seo-text p {
  color: var(--clr-muted);
  margin-bottom: 16px;
  line-height: 180%;
}

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

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

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

.seo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

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

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

/** FAQ **/

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

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  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: #fff;
  text-align: left;
  transition: all .3s ease-out;
}

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-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(--clr-muted);
  line-height: 1.8em;
}

/* INFO TABLE */

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

.info-table tr {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgb(255 255 255 / 5%);
}

.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(--clr-accent);
  background: rgba(255,255,255,0.02);
}

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

/*! Footer */

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

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

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

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

.end-section_SYyvf-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.trust-seals {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-seals img {
  height: 50px;
  opacity: 0.4;
  transition: all .3s ease-out;
}

.trust-seals img:hover {
  filter: saturate(1) brightness(1);
  opacity: 1;
}

.responsible-gaming {
  text-align: center;
  padding-block: 40px;
  padding-inline: 0;
  border: 1px 0 solid rgb(255 255 255 / 5%);
}

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

.responsible-text {
  font-size: 14px;
  color: var(--clr-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 .3s ease-out;
}

.safe-play a:hover {
  transform: scale(1.05);
}

.safe-play img {
  height: 40px;
  filter: brightness(0.6) contrast(0.8);
  transition: all .3s ease-out;
}

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

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

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

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

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

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

.footer-disclaimer {
  max-width: 650px;
  margin: 12px auto 0;
  opacity: 0.5;
  line-height: 1.6;
}

/* HAMBURGER & MOBILE */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.38rem;
  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;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-accent);
  transition: all .3s ease-out;
  border-radius: 2px;
}

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

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

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

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


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

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

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

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

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

  .end-section_SYyvf-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

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

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

/* --- Responsive - Mobile --- */

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

  .site-header_FCeY2 .container_PdSYX {
    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(--font-heading);
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--clr-accent);
    text-transform: capitalize;
    text-decoration: none;
    white-space: nowrap;
  }

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

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

  .nav-toggle {
    display: flex;
  }

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

  .nav_ZYgUs.active {
    right: 0;
  }

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

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

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

@media (max-width: 29.9375rem) {
  .container_PdSYX { padding: 0px 16px; }
  .area_ZLrM0 { padding: 60px 0px; }
  .banner_hFk9p-ctas { flex-direction: column; }
  .banner_hFk9p-ctas .link-btn_2F3qi { width: 100%; }

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