/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Neon Green
 * Typography: Clean Geometric
 * Generated: 2026-09-10T16:33:56.173Z
 */

@import "https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap";

:root {
  /* Colors */
  --c-secondary: #4ade80;
  --c-light: #f0fdf4;
  --c-darker: #021a0d;
  --c-dark: #052e16;
  --c-secondary-alpha: #4ade8040;
  --c-primary-alpha: #22c55e40;
  --c-primary: #22c55e;
  --c-accent: #86efac;
  --c-text: #dcfce7;
  --c-muted: #86efac;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --sp-section: 50px;
  --sp-element: 20px;
  --sp-gap: 20px;

  /* Border Radius */
  --rounded-md: 16px;
  --rounded-sm: 4px;
  --rounded-lg: 24px;
  --rounded-full: 100px;

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


/** Base **/

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


.jump-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-block: 12px;
  padding-inline: 24px;
  background: var(--c-primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--rounded-md);
  z-index: 10000;
  transition: top 300ms ease-out;
}

.jump-link: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 go-slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}



html {
  scroll-behavior: smooth;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 300ms ease-out;
}


.inner_bkDRx {
  max-width: 80rem;
  margin: 0 auto;
  padding-top: 0;
  padding-right: 24px;
  padding-bottom: 0;
  padding-left: 24px;
}


/* --- Header --- */

.header_updIr {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0;
  z-index: 1000;
  padding: 16px 0px 16px 0;
  background: rgb(0 0 0 / 85%);
  backdrop-filter: blur(12px);
  transition: all 300ms ease-out;
}

.header_updIr.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%);
}

.header_updIr .inner_bkDRx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_updIr .logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-accent);
  text-transform: none;
  letter-spacing: 0.5px;
}

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

.menu_eMbWz a {
  font-weight: 500;
  color: var(--c-text);
  opacity: 0.8;
  transition: all 300ms ease-out;
}

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

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

/* BUTTONS */

.link-btn_GWQt2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 28px;
  padding-bottom: 12px;
  padding-left: 28px;
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--rounded-md);
  cursor: pointer;
  transition: all 300ms ease-out;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.link-btn_GWQt2--primary {
  background: transparent;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}

.link-btn_GWQt2--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--box-shadow-elevated);
  background: var(--c-primary);
  color: #FFF;
}

.link-btn_GWQt2--secondary {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--c-text);
  color: var(--c-text);
}

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

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

.link-btn_GWQt2--small {
  padding-block: 8px;
  padding-inline: 20px;
  font-size: 14px;
}


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

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

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

.intro_nS0hz-content {
}

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

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

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

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

.intro_nS0hz-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

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

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

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

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

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


/*! Sections */

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

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

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


/* Cards */

.box_1G7Z0 {
  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: rgb(255 255 255 / 8%);
  border-radius: var(--rounded-lg);
  padding: var(--sp-element);
  transition: all 300ms ease-out;
}

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

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

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

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

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

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

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

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

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

.box_1G7Z0--game:hover img {
  transform: scale(1.06);
}

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

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

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

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

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

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

.box_1G7Z0--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.6) contrast(0.8);
  transition: all 300ms ease-out;
}

.box_1G7Z0--provider:hover img {
  filter: none;
  transform: scale(1.03) rotate(1deg);
}

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

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

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

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

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

.reviewer-avatar {
  width: 50px;
  height: 48px;
  border-radius: 40%;
  background: linear-gradient(to bottom, var(--c-primary), var(--c-secondary));
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

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

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

.box_1G7Z0--review p {
  color: var(--c-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: 32px;
  margin-bottom: 20px;
  color: var(--c-accent);
}

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

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

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

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

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

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

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

.zone_OrcF8--cta p {
  font-size: 19px;
  color: rgb(255 255 255 / 90%);
  margin-bottom: 32px;
  position: relative;
}

.zone_OrcF8--cta .link-btn_GWQt2 {
  position: relative;
  background: rgb(255, 255, 255);
  color: var(--c-primary);
}

.zone_OrcF8--cta .link-btn_GWQt2:hover {
  background: var(--c-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(--rounded-lg);
  overflow: hidden;
}

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

.payments-table thead {
  background: rgb(255 255 255 / 5%);
}

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

.payments-table tbody tr {
  border: solid 0 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background 300ms 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-block: 4px;
  padding-inline: 12px;
  background: var(--c-primary-alpha);
  border-radius: var(--rounded-full);
  font-size: 0.813rem;
  color: var(--c-accent);
}

/*
 * SEO Text
 */

.info-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(--rounded-lg);
  border: 1px solid rgb(255 255 255 / 5%);
}

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

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

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

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

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

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

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

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


/** FAQ **/

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

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rounded-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: 17px;
  font-weight: 600;
  color: rgb(255,255,255);
  text-align: left;
  transition: color 300ms ease-out;
}

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

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--c-primary);
  transition: transform 300ms ease-out;
}

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

.faq-answer {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 300ms 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(--c-muted);
  line-height: 1.8;
}

/* --- Info Table --- */

.info-table {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--rounded-lg);
  overflow: hidden;
}

.info-table tr {
  border: 0 0 1px 0 solid 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(--c-accent);
  background: rgba(255,255,255,0.02);
}

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


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

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

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

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

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

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

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

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

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

.cert-logos img {
  height: 50px;
  filter: grayscale(100%) brightness(2);
  transition: all 300ms ease-out;
}

.cert-logos img:hover {
  filter: saturate(1) brightness(1);
  opacity: 1;
}

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

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

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

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

.responsible-logos a {
  display: block;
  transition: all 300ms ease-out;
}

.responsible-logos a:hover {
  transform: scale(1.03);
}

.responsible-logos img {
  height: 40px;
  filter: saturate(0) brightness(1.8);
  transition: all 300ms ease-out;
}

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

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

.end-section_PJcE9-bottom p {
  font-size: 14px;
  color: var(--c-muted);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

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

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

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

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

/* --- Hamburger & Mobile --- */

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

.mobile-nav-btn span {
  width: 28px;
  height: 2px;
  background: var(--c-accent);
  transition: all 300ms ease-out;
  border-radius: 2px;
}

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

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

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

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

/*! Responsive - Tablet */

@media (max-width: 1025px) {
  .intro_nS0hz .inner_bkDRx {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .header_updIr {
    padding: 0;
  }

  .header_updIr .inner_bkDRx {
    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: 1.063rem;
    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(to bottom, var(--c-primary), var(--c-secondary));
    color: rgb(255, 255, 255);
    font-size: 0.813rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.8px;
    border-radius: var(--rounded-md);
    box-shadow: 0 4px 15px var(--c-primary-alpha);
  }

  .header_updIr-actions {
    display: none;
  }

  .mobile-nav-btn {
    display: flex;
  }

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

  .menu_eMbWz.active {
    right: 0;
  }

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

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

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

@media (max-width: 481px) {
  .inner_bkDRx { padding: 0px 16px; }
  .zone_OrcF8 { padding: 60px 0px; }
  .intro_nS0hz-ctas { flex-direction: column; }
  .intro_nS0hz-ctas .link-btn_GWQt2 { width: 100%; }

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