

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

:root {
  --clr-primary: #3b82f6;
  --clr-secondary: #60a5fa;
  --clr-secondary-alpha: #60a5fa40;
  --clr-muted: #93c5fd;
  --clr-dark: #0c1929;
  --clr-accent: #93c5fd;
  --clr-text: #dbeafe;
  --clr-light: #eff6ff;
  --clr-darker: #060d14;
  --clr-primary-alpha: #3b82f640;

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

  --spacing-element: 30px;
  --spacing-gap: 25px;
  --spacing-section: 70px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --radius-full: 8px;
  --sh-elevated: 0 4px 16px rgba(0,0,0,0.2);
  --sh-card: 0 2px 8px rgba(0,0,0,0.15);
  --sh-glow: 0 0 20px;
}

/*
 * Base
 */

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

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

@keyframes slideUp-motion {
  0% { opacity: 0; transform: translateY(30px); }
  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(--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: 800;
  line-height: 1.2em;
}

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

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

/* ===== Container ===== */

.container_0mnGC {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

/* Header */

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

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

.top-bar_RlxBl .container_0mnGC {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar_RlxBl .logo {
  font-family: var(--typo-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.top-bar_RlxBl-actions {
  display: flex;
  gap: 12px;
}

/* ===== Buttons ===== */

.btn_Abo62 {
  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(--radius-md);
  cursor: pointer;
  transition: all .3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.btn_Abo62--primary:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-elevated);
  background: var(--clr-primary);
  color: #FFFFFF;
}

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

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

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

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

/*
 * Hero
 */

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

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

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

.intro_q0SwG-content {
}

.intro_q0SwG-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(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

/* Sections */

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

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

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


.tile_QRUae {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgb(255 255 255 / 2%) 100%);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--spacing-element);
  transition: all .3s ease;
}

.tile_QRUae:hover {
  transform: translate(0, -6px);
  box-shadow: var(--sh-elevated);
  border-color: var(--clr-primary);
}

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

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

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

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

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

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

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

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

.tile_QRUae--game:hover img {
  transform: scale(1.1);
}

.tile_QRUae-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 .3s ease;
}

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

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

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

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

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

.tile_QRUae--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(80%) brightness(1.5);
  transition: all .3s ease;
}

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

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

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

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

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

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

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

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

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

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

/* About / Content Layout */

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

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

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

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

/* CTA Blocks */

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

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

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

.segment_sRqsB--cta .btn_Abo62 {
  position: relative;
  background: rgb(255,255,255);
  color: var(--clr-primary);
}

.segment_sRqsB--cta .btn_Abo62: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(--radius-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: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}

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

.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-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  background: var(--clr-primary-alpha);
  border-radius: var(--radius-full);
  font-size: 0.813rem;
  color: var(--clr-accent);
}

/* SEO Text */

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

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

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

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

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

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

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

.seo-content h3 {
  font-size: 1.75rem;
  margin: 32px 0 16px;
  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-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

/*
 * Info Table
 */

.info-table {
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-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-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: rgb(255 255 255 / 2%);
}

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


.colophon_s4oC6 {
  background: var(--clr-darker);
  padding: 80px 0 0px;
  border: 1px 0 0 0 solid rgba(255,255,255,0.05);
}

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

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

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

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

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

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

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

.security-badges img {
  height: 50px;
  filter: grayscale(100%) brightness(2) contrast(0.9);
  transition: all .3s ease;
}

.security-badges img:hover {
  filter: none;
  opacity: 1;
}

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

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

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

.resp-logos {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.resp-logos a {
  display: block;
  transition: all .3s ease;
}

.resp-logos a:hover {
  transform: translateY(-2px);
}

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

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

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

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

.colophon_s4oC6-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.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: 30px;
  height: 3px;
  background: var(--clr-accent);
  transition: all .3s ease;
  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;
}

/* Responsive - Tablet */

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

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

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

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

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

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

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

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


@media (max-width: 47.9375em) {
  .top-bar_RlxBl {
    padding: 0px;
  }

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

  .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: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px var(--clr-primary-alpha);
  }

  .top-bar_RlxBl-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .menu_YJaPS {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--clr-darker);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right .3s 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_YJaPS.active {
    right: 0px;
  }

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

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

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

@media (max-width: 29.9375rem) {
  .container_0mnGC { padding: 0px 16px; }
  .segment_sRqsB { padding: 60px 0; }
  .intro_q0SwG-ctas { flex-direction: column; }
  .intro_q0SwG-ctas .btn_Abo62 { width: 100%; }

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