/* Auto-generated stylesheet | Midnight Gold | Futuristic */

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Titillium+Web:wght@400;600&display=swap");

:root {
  /* Colors */
  --clr-secondary: #eab308;
  --clr-primary: #ca8a04;
  --clr-accent: #fde047;
  --clr-dark: #1a1505;
  --clr-secondary-alpha: #eab30840;
  --clr-text: #fef08a;
  --clr-light: #fefce8;
  --clr-muted: #facc15;
  --clr-darker: #0d0b02;
  --clr-primary-alpha: #ca8a0440;

  /* Typography */
  --typo-heading: 'Orbitron', sans-serif;
  --typo-body: 'Titillium Web', sans-serif;

  /* Spacing */
  --element-space: 30px;
  --section-space: 70px;
  --item-gap: 25px;

  /* Border Radius */
  --r-full: 4px;
  --r-md: 6px;
  --r-sm: 4px;
  --r-lg: 8px;

  /* Shadows */
  --elevated-shadow: 0 4px 16px rgba(0,0,0,0.2);
  --card-shadow: 0 2px 8px rgba(0,0,0,0.15);
  --glow-shadow: 0 0 20px;
}



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


.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-block: 12px;
  padding-inline: 24px;
  background: var(--clr-primary);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-md);
  z-index: 10000;
  transition: top 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.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 go-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes do-slideUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer-anim {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 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: 800;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}



/*
 * Container
 */

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



/* Header */

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

.site-header_fY9bD.scrolled {
  background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(20px);
  padding-block: 12px;
  padding-inline: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.site-header_fY9bD .logo {
  font-family: var(--typo-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navigation_AkBqi {
  display: flex;
  gap: 2rem;
}

.navigation_AkBqi a {
  font-weight: 500;
  color: var(--clr-text);
  opacity: 0.8;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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



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

.cta_BU4h2 {
  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(--r-md);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cta_BU4h2--primary {
  background: linear-gradient(145deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  border: none;
  color: rgb(255,255,255);
}

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

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

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

.cta_BU4h2--large {
  padding: 18px 40px;
  font-size: 17px;
}

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



/** Hero **/

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

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

.intro_EolxO-content {
}

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

.intro_EolxO-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_EolxO-subtitle {
  font-size: 20px;
  color: var(--clr-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

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

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

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

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

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

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

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


/*! Sections */

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

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

.section_hHVrC-subtitle {
  text-align: center;
  font-size: 1.063rem;
  color: var(--clr-muted);
  margin-bottom: 48px;
  max-width: 560px;
  margin-inline: auto;
}


/* Cards */

.box_eLjJc {
  background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px rgb(255 255 255 / 8%) solid;
  border-radius: var(--r-lg);
  padding: var(--element-space);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.box_eLjJc:hover {
  transform: translateY(-6px);
  box-shadow: var(--elevated-shadow);
  border-color: var(--clr-primary);
}

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

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

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

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

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

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

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

.box_eLjJc--game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.box_eLjJc-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 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.box_eLjJc-name {
  font-weight: 600;
  color: #FFF;
}

.listing_DuJlp--providers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--item-gap);
}

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

.box_eLjJc--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.box_eLjJc--provider:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.03) rotate(1deg);
}

.box_eLjJc--provider span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  padding: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-muted);
  text-align: center;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

.section_hHVrC--cta {
  text-align: center;
  padding-block: 80px;
  padding-inline: 0;
  background: linear-gradient(to bottom right, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.section_hHVrC--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.25;
}

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

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

.section_hHVrC--cta .cta_BU4h2 {
  position: relative;
  background: #fff;
  color: var(--clr-primary);
}

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



.payments-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
}

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

.payments-table tbody tr {
  border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
  transition: background 350ms 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-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  background: var(--clr-primary-alpha);
  border-radius: var(--r-full);
  font-size: 0.813rem;
  color: var(--clr-accent);
}


/* -- SEO TEXT -- */

.seo-text {
  margin-top: 48px;
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--r-lg);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(255 255 255 / 5%);
}

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

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

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

.section_hHVrC--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: #FFFFFF;
}

.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: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  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: #FFF;
  text-align: left;
  transition: color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--clr-primary);
  transition: transform 350ms 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 350ms 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(--clr-muted);
  line-height: 1.8em;
}



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

.info-table {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.info-table tr {
  border: 0 0 1px 0 rgb(255 255 255 / 5%) solid;
}

.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: rgba(255, 255, 255, 0.02);
}

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




.bottom-bar_Zz38B {
  background: var(--clr-darker);
  padding-top: 80px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

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

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

.security-badges img {
  height: 50px;
  filter: grayscale(80%) brightness(1.5);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.security-badges img:hover {
  filter: brightness(1) contrast(1);
  opacity: 1;
}

.responsible-gaming {
  text-align: center;
  padding-top: 40px;
  padding-right: 0px;
  padding-bottom: 40px;
  padding-left: 0;
  border: solid 1px 0 rgb(255 255 255 / 5%);
}

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

.responsible-text {
  font-size: 14px;
  color: var(--clr-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 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.responsible-gaming a:hover {
  transform: translateY(-2px) scale(1.01);
}

.responsible-gaming img {
  height: 40px;
  filter: grayscale(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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



/* HAMBURGER & MOBILE */

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

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--clr-accent);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

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



@media (max-width: 1023px) {
  .intro_EolxO .wrapper_xdJfz {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

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

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

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



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

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

  .site-header_fY9bD .wrapper_xdJfz {
    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(180deg, var(--clr-primary), var(--clr-secondary));
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.03em;
    border-radius: var(--r-md);
    box-shadow: 0 4px 15px var(--clr-primary-alpha);
  }

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

  .menu-toggle {
    display: flex;
  }

  .navigation_AkBqi {
    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 350ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.7);
    border-left: 2px solid var(--clr-primary);
    z-index: 1001;
    gap: 0;
  }

  .navigation_AkBqi.active {
    right: 0px;
  }

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

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

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

@media (max-width: 29.9375em) {
  .wrapper_xdJfz { padding: 0 16px; }
  .section_hHVrC { padding: 60px 0px; }
  .intro_EolxO-ctas { flex-direction: column; }
  .intro_EolxO-ctas .cta_BU4h2 { width: 100%; }

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