/* Casino Landing Page Styles - Emerald Fortune + Sporty Bold */

@import url("https://fonts.googleapis.com/css2?family=Russo+One&family=Lato:wght@400;700&display=swap");

:root {
  /* Colors */
  --color-secondary-alpha: #10b98140;
  --color-text: #d1fae5;
  --color-primary: #059669;
  --color-light: #ecfdf5;
  --color-secondary: #10b981;
  --color-darker: #021a11;
  --color-primary-alpha: #05966940;
  --color-dark: #052e1f;
  --color-muted: #6ee7b7;
  --color-accent: #34d399;

  /* Typography */
  --font-body: 'Lato', sans-serif;
  --font-heading: 'Russo One', sans-serif;

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

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

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


/* ==================== BASE ==================== */

*, *::before, *::after {
  margin: 0;
  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: rgb(255, 255, 255);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-md);
  z-index: 10000;
  transition: top 0.35s ease-in;
}

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

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

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


html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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


/*! Header */

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

.header_wp18K.scrolled {
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 12px 0 12px 0px;
  box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.header_wp18K .box_aCGLD {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_wp18K .logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: none;
  letter-spacing: 1px;
}

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

.navigation_QOcfv a {
  font-weight: 500;
  color: var(--color-text);
  opacity: 0.8;
  transition: all 0.35s ease-in;
}

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

.header_wp18K-actions {
  display: flex;
  gap: 0.75rem;
}

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

.btn_gGJLm {
  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 0.35s ease-in;
  text-transform: none;
  letter-spacing: 0.8px;
}

.btn_gGJLm--primary {
  background: var(--color-primary);
  border: none;
  box-shadow: 0 0 20px var(--color-primary-alpha);
  color: white;
}

.btn_gGJLm--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-elevated);
}

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

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

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

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



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

.banner_DR2za::before {
  content: '';
  position: absolute;
  inset: 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_DR2za .box_aCGLD {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner_DR2za-content {
  order: 2;
}

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

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

.banner_DR2za-subtitle {
  font-size: 20px;
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 460px;
}

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

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

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

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

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

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

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

/* Sections */

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

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

.zone_K8xiw-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--color-muted);
  margin-bottom: 3rem;
  max-width: 640px;
  margin-inline: auto;
}

/* -- CARDS -- */

.item_js7AW {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgb(255 255 255 / 2%) 100%);
  border: solid 1px rgb(255 255 255 / 8%);
  border-radius: var(--r-lg);
  padding: var(--spacing-element);
  transition: all 0.35s ease-in;
}

.item_js7AW:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--box-shadow-elevated);
  border-color: var(--color-primary);
}

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

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

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

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

.item_js7AW--bonus p {
  color: var(--color-muted);
  margin-bottom: 24px;
  line-height: 170%;
}

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

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

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

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

.item_js7AW-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 80%);
  display: flex;
  place-content: center;
  place-items: center;
  opacity: 0;
  transition: opacity 0.35s ease-in;
}

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

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

.item_js7AW-name {
  font-weight: 600;
  color: #ffffff;
}

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

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

.item_js7AW--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.6) contrast(0.8);
  transition: all 0.35s ease-in;
}

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

.item_js7AW--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 0.35s ease-in;
}

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

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

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

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

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

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

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

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

/*! About / Content Layout */

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

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

.alt-row--flip {
  direction: rtl;
}

.alt-row--flip > * {
  direction: ltr;
}

.alt-text h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}

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

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

.alt-media img {
  width: 100%;
  max-width: 400px;
  max-height: 320px;
  object-fit: contain;
}


/* --- CTA Blocks --- */

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

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

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

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

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

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


/* ===== 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(--r-lg);
  overflow: hidden;
}

.payments-table th,
.payments-table td {
  padding: 20px 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: uppercase;
  font-size: 0.813rem;
  letter-spacing: 0.3px;
}

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

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


/* -- SEO TEXT -- */

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

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

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

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

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

.seo-content {
  max-width: 960px;
  margin-inline: auto;
}

.seo-content h2 {
  font-size: 40px;
  margin-bottom: 24px;
  color: rgb(255,255,255);
}

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

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


/*! FAQ */

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

.faq-item {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-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.35s ease-in;
}

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

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

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

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

.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(--color-muted);
  line-height: 1.8;
}


/* -- INFO TABLE -- */

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

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

/*
 * Footer
 */

.colophon_HKfcj {
  background: var(--color-darker);
  padding-top: 80px;
  padding-right: 0px;
  padding-bottom: 0;
  padding-left: 0;
  border: 1px 0 0 0 solid rgb(255 255 255 / 5%);
}

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

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

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

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

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

.colophon_HKfcj-nav a:hover {
  color: var(--color-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.35s ease-in;
}

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

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

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

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

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

.responsible-gaming a {
  display: block;
  transition: all 0.35s ease-in;
}

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

.responsible-gaming img {
  height: 40px;
  filter: saturate(0) brightness(1.8);
  transition: all 0.35s ease-in;
}

.responsible-gaming a:hover img {
  filter: saturate(1) brightness(1);
  opacity: 1;
}

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

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

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

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

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

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--color-accent);
  transition: all 0.35s ease-in;
  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: 1020px) {
  .banner_DR2za .box_aCGLD {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .alt-row { grid-template-columns: 1fr; }
  .alt-row--flip { direction: ltr; }

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

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

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


/* ==================== RESPONSIVE - MOBILE ==================== */

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

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

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    font-family: var(--font-heading);
    font-size: 17px;
    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(to bottom right, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    font-size: 0.813rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.8px;
    border-radius: var(--r-md);
    box-shadow: 0 4px 15px var(--color-primary-alpha);
  }

  .header_wp18K-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .navigation_QOcfv.active {
    right: 0;
  }

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

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

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

@media (max-width: 29.9375rem) {
  .box_aCGLD { padding: 0px 16px; }
  .zone_K8xiw { padding: 60px 0px; }
  .banner_DR2za-ctas { flex-direction: column; }
  .banner_DR2za-ctas .btn_gGJLm { width: 100%; }

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