

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

:root {
  /* Colors */
  --clr-primary: #7c3aed;
  --clr-dark: #0f0a1e;
  --clr-muted: #a8a3c7;
  --clr-secondary: #f59e0b;
  --clr-secondary-alpha: #f59e0b40;
  --clr-light: #f5f3ff;
  --clr-primary-alpha: #7c3aed40;
  --clr-accent: #fbbf24;
  --clr-darker: #080510;
  --clr-text: #e2e0ff;

  /* Typography */
  --typo-body: 'Roboto', sans-serif;
  --typo-heading: 'Anton', sans-serif;

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

  /* Border Radius */
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 28px;
  --border-radius-full: 50px;

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

/* ===== Base ===== */

*, *::before, *::after {
  margin: 0;
  padding: 0px;
  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(--clr-primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  z-index: 10000;
  transition: top 0.25s ease;
}

.jump-link: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 {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes run-slideUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}



html {
  scroll-behavior: smooth;
}

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

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

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

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

/* CONTAINER */

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


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

.site-header_d8bCY.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 rgb(0 0 0 / 30%);
}

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

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

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

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

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

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


/* BUTTONS */

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

.action_vtbUm--primary {
  background: var(--clr-primary);
  border: none;
  box-shadow: 0 0 20px var(--clr-primary-alpha);
  color: #ffffff;
}

.action_vtbUm--primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-elevated);
}

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

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

.action_vtbUm--large {
  padding-top: 18px;
  padding-right: 40px;
  padding-bottom: 18px;
  padding-left: 40px;
  font-size: 17px;
}

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

/** Hero **/

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

.splash_lkvne::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_lkvne .wrapper_OX7b9 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.splash_lkvne-content {
  order: 2;
}

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

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

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

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

.splash_lkvne-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

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

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

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

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

/* SECTIONS */

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

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

.section_ZxwCy-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--clr-muted);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* CARDS */

.box_R7PG1 {
  background: linear-gradient(145deg, rgb(255 255 255 / 5%) 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(--border-radius-lg);
  padding: var(--element-spacing);
  transition: all 0.25s ease;
}

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

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

.box_R7PG1--bonus {
  text-align: center;
  padding-top: 40px;
  padding-right: 30px;
  padding-bottom: 40px;
  padding-left: 30px;
}

.box_R7PG1-icon {
  font-size: 56px;
  margin-bottom: 1.25rem;
}

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

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

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

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

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

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

.box_R7PG1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

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

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

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

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

.box_R7PG1--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(2) contrast(0.9);
  transition: all 0.25s ease;
}

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

.box_R7PG1--provider span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 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 0.25s ease;
}

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

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

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

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

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

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

.box_R7PG1--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: 1rem;
  line-height: 1.8em;
}

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

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

/* ==================== CTA BLOCKS ==================== */

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

.section_ZxwCy--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0.2;
}

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

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

.section_ZxwCy--cta .action_vtbUm {
  position: relative;
  background: white;
  color: var(--clr-primary);
}

.section_ZxwCy--cta .action_vtbUm:hover {
  background: var(--clr-dark);
  color: #ffffff;
}


/* Payments Table */

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

.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.02);
  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(--clr-accent);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.3px;
}

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

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

/* SEO Text */

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

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

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

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

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

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

.seo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  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.9;
}

/*! FAQ */

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

.faq-item {
  border: solid 1px rgb(255 255 255 / 8%);
  border-radius: var(--border-radius-md);
  margin-bottom: 12px;
  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: 17px;
  font-weight: 600;
  color: rgb(255,255,255);
  text-align: left;
  transition: color 0.25s ease;
}

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

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

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

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

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


/* -- INFO TABLE -- */

.info-table {
  width: 100%;
  max-width: 750px;
  margin: 0px auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--border-radius-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: 20px 24px;
  text-align: left;
}

.info-table th {
  width: 40%;
  font-weight: 600;
  color: var(--clr-accent);
  background: rgb(255 255 255 / 2%);
}

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

/* FOOTER */

.bottom-bar_SxKYy {
  background: var(--clr-darker);
  padding: 80px 0px 0;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: rgb(255 255 255 / 5%);
}

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

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

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

.bottom-bar_SxKYy-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bottom-bar_SxKYy-nav a {
  color: var(--clr-muted);
}

.bottom-bar_SxKYy-nav a:hover {
  color: var(--clr-accent);
}

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

.badge-strip img {
  height: 50px;
  filter: brightness(0.6) contrast(0.8);
  transition: all 0.25s ease;
}

.badge-strip img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

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

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

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

.gaming-care {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gaming-care a {
  display: block;
  transition: all 0.25s ease;
}

.gaming-care a:hover {
  transform: translateY(-5px);
}

.gaming-care img {
  height: 40px;
  filter: grayscale(80%) brightness(1.5);
  transition: all 0.25s ease;
}

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

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

.bottom-bar_SxKYy-bottom p {
  font-size: 0.875rem;
  color: var(--clr-muted);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

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

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

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

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


.burger {
  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;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--clr-accent);
  transition: all 0.25s ease;
  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;
}

/* Responsive - Tablet */

@media (max-width: 63.9375rem) {
  .splash_lkvne .wrapper_OX7b9 {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

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

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

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


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

  .site-header_d8bCY .wrapper_OX7b9 {
    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(--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(120deg, var(--clr-primary), var(--clr-secondary));
    color: rgb(255,255,255);
    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(--clr-primary-alpha);
  }

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

  .burger {
    display: flex;
  }

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

  .menu_GEFlj.active {
    right: 0px;
  }

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

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

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

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

@media (max-width: 30rem) {
  .wrapper_OX7b9 { padding: 0 16px; }
  .section_ZxwCy { padding: 60px 0; }
  .splash_lkvne-ctas { flex-direction: column; }
  .splash_lkvne-ctas .action_vtbUm { width: 100%; }

  .logo-mobile { font-size: 0.938rem; }
  .mobile-cta {
    padding: 8px 12px;
    font-size: 12px;
    max-width: 140px;
  }
}
.steps-cta{text-align:center;margin-top:28px}
.footer-legal-links{display:flex;flex-wrap:wrap;gap:8px 18px;justify-content:center;margin-bottom:18px}
.footer-legal-links a{color:inherit;opacity:.72;text-decoration:none;font-size:.85rem}
.footer-legal-links a:hover{opacity:1;text-decoration:underline}
.section_ZxwCy--pagetop{padding-top:140px}
