

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

:root {
  --c-secondary-alpha: #f9731640;
  --c-text: #fed7aa;
  --c-light: #fff7ed;
  --c-darker: #0d0802;
  --c-muted: #fb923c;
  --c-secondary: #f97316;
  --c-primary-alpha: #ea580c40;
  --c-accent: #fdba74;
  --c-dark: #1a0f05;
  --c-primary: #ea580c;

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

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

/** Base **/

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

.bypass-block {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background: var(--c-primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  z-index: 10000;
  transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bypass-block:focus {
  top: 10px;
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--c-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 play-slideUp {
  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); }
}

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


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--typo-body);
  background: var(--c-darker);
  color: var(--c-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 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/** Container **/

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

/* ===== Header ===== */

.header_vkG0H {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 16px;
  padding-right: 0;
  padding-bottom: 16px;
  padding-left: 0px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header_vkG0H .inner_friEI {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links_qRd9I {
  display: flex;
  gap: 32px;
}

.nav-links_qRd9I a {
  font-weight: 500;
  color: var(--c-text);
  opacity: 0.8;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links_qRd9I a:hover {
  opacity: 1;
  color: var(--c-accent);
}

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

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

.button_v35FJ {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--typo-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.button_v35FJ--primary {
  background: var(--c-primary);
  border: none;
  box-shadow: 0 0 20px var(--c-primary-alpha);
  color: #FFFFFF;
}

.button_v35FJ--primary:hover {
  transform: translate(0, -3px);
  box-shadow: var(--elevated-shadow);
}

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

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

.button_v35FJ--large {
  padding-block: 18px;
  padding-inline: 40px;
  font-size: 17px;
}

.button_v35FJ--small {
  padding-top: 8px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 0.875rem;
}

/** Hero **/

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

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

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

.splash_eIAdb-content {
}

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

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

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

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

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

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

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

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

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

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

/*
 * Sections
 */

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

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

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

/*
 * Cards
 */

.tile_3hZCo {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: solid rgba(255, 255, 255, 0.08) 1px;
  border-radius: var(--radius-lg);
  padding: var(--pad-element);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.tile_3hZCo-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

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

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

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

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

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

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

.tile_3hZCo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.tile_3hZCo-name {
  font-weight: 600;
  color: #FFFFFF;
}

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

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

.tile_3hZCo--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.6) contrast(0.8);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.tile_3hZCo--provider span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0px;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-muted);
  text-align: center;
  background: linear-gradient(transparent, rgb(0 0 0 / 60%));
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.reviewer-avatar {
  width: 50px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--c-primary), var(--c-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(--c-accent);
  font-size: 0.875rem;
}

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

/* ===== About / Content Layout ===== */

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

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

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

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

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

.zigzag-content p {
  color: var(--c-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: 450px;
  max-height: 320px;
  object-fit: contain;
}

/*! CTA Blocks */

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

.block_saQ5W--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.25;
}

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

.block_saQ5W--cta p {
  font-size: 1.188rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  position: relative;
}

.block_saQ5W--cta .button_v35FJ {
  position: relative;
  background: #ffffff;
  color: var(--c-primary);
}

.block_saQ5W--cta .button_v35FJ:hover {
  background: var(--c-dark);
  color: white;
}


.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(--c-accent);
  text-transform: uppercase;
  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 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.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-block: 4px;
  padding-inline: 12px;
  background: var(--c-primary-alpha);
  border-radius: var(--radius-full);
  font-size: 0.813rem;
  color: var(--c-accent);
}

/* SEO Text */

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

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

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

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

.block_saQ5W--seo-text {
  background: var(--c-dark);
}

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

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

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

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

/*! FAQ */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  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: 1.063rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-primary);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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


.info-table {
  width: 100%;
  max-width: 900px;
  margin-inline: 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: 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: 20px 24px;
  text-align: left;
}

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

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

/* ==================== FOOTER ==================== */

.colophon_BMxtA {
  background: var(--c-darker);
  padding-top: 80px;
  padding-right: 0px;
  padding-bottom: 0;
  padding-left: 0px;
  border: 1px 0 0 0 solid rgba(255,255,255,0.05);
}

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

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

.colophon_BMxtA-col p {
  color: var(--c-muted);
  line-height: 1.8;
}

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

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

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

.cert-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 50px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.safe-play {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.safe-play a {
  display: block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.safe-play a:hover {
  transform: translateY(-3px) scale(1.02);
}

.safe-play img {
  height: 40px;
  filter: grayscale(100%) brightness(2) contrast(0.9);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.safe-play a:hover img {
  filter: none;
  opacity: 1;
}

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

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

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

.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.6em;
}

/* ==================== HAMBURGER & MOBILE ==================== */

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

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--c-accent);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  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;
}

/** Responsive - Tablet **/

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

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

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

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

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

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

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

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

/* Responsive - Mobile */

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

  .header_vkG0H .inner_friEI {
    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(--c-accent);
    text-transform: none;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-cta {
    display: block;
    flex: 1;
    max-width: 180px;
    padding: 10px 16px;
    background: linear-gradient(120deg, var(--c-primary), var(--c-secondary));
    color: rgb(255, 255, 255);
    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(--c-primary-alpha);
  }

  .header_vkG0H-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links_qRd9I {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--c-darker);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.7);
    border-left: 2px solid var(--c-primary);
    z-index: 1001;
    gap: 0px;
  }

  .nav-links_qRd9I.active {
    right: 0;
  }

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

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

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

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

@media (max-width: 29.9375em) {
  .inner_friEI { padding: 0 16px; }
  .block_saQ5W { padding: 60px 0; }
  .splash_eIAdb-ctas { flex-direction: column; }
  .splash_eIAdb-ctas .button_v35FJ { width: 100%; }

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