/*
 * Theme: Royal Purple & Gold
 * Typography: Tech Future
 */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@400;500;600&display=swap');

:root {
  /* Colors */
  --secondary-alpha: #f59e0b40;
  --light: #f5f3ff;
  --text: #e2e0ff;
  --muted: #a8a3c7;
  --primary: #7c3aed;
  --darker: #080510;
  --secondary: #f59e0b;
  --accent: #fbbf24;
  --dark: #0f0a1e;
  --primary-alpha: #7c3aed40;

  /* Typography */
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;

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

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

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



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


.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  z-index: 10000;
  transition: top .3s ease-in-out;
}

.skip-link:focus {
  top: 10px;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}



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

html {
  scroll-behavior: smooth;
}

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

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

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

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



.inner_xYmw9 {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-block: 0;
  padding-inline: 24px;
}


/* --- Header --- */

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

.top-bar_1fS2F.scrolled {
  background: rgba(0, 0, 0, 0.9);
  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);
}

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

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

.main-nav_uzqZo {
  display: flex;
  gap: 32px;
}

.main-nav_uzqZo a {
  font-weight: 500;
  color: var(--text);
  opacity: 0.8;
  transition: all .3s ease-in-out;
}

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

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




.button_yaMtw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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




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

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

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

.intro_Rovfe-content {
  order: 2;
}

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

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

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

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

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

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

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

.intro_Rovfe-feature span {
  font-size: 1.188rem;
}

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

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




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

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

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



/* CARDS */

.tile_DeTuO {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--element-spacing);
  transition: all .3s ease-in-out;
}

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

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

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

.tile_DeTuO-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}

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

.tile_DeTuO--bonus p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

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

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

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

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

.tile_DeTuO-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-in-out;
}

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

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

.tile_DeTuO-name {
  font-weight: 600;
  color: #fff;
}

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

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

.tile_DeTuO--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  transition: all .3s ease-in-out;
}

.tile_DeTuO--provider:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.tile_DeTuO--provider span {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity .3s ease-in-out;
}

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

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

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

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

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

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

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

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



/*
 * About / Zigzag
 */

.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: 2rem;
  margin-bottom: 20px;
  color: var(--accent);
}

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



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

.area_jkB8I--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

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

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

.area_jkB8I--cta .button_yaMtw {
  position: relative;
  background: #ffffff;
  color: var(--primary);
}

.area_jkB8I--cta .button_yaMtw:hover {
  background: var(--dark);
  color: #FFF;
}


/* PAYMENTS TABLE */

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

.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-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  text-align: left;
}

.payments-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.payments-table th {
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  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 .3s ease-in-out;
}

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



/*
 * SEO Text
 */

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

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

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

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

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

.seo-content {
  max-width: 900px;
  margin-inline: 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-top: 32px;
  margin-right: 0;
  margin-bottom: 16px;
  margin-left: 0;
  color: var(--accent);
}

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


/** FAQ **/

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

.faq-item {
  border: 1px rgba(255,255,255,0.08) solid;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  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: all .3s ease-in-out;
}

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-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(--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: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-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: 20px 24px;
  text-align: left;
}

.info-table th {
  width: 40%;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.02);
}

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


/* Footer */

.site-footer_3dmDk {
  background: var(--darker);
  padding: 80px 0 0 0px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: rgb(255 255 255 / 5%);
}

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

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

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

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

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

.site-footer_3dmDk-nav a:hover {
  color: var(--accent);
}

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

.trust-badges img {
  height: 50px;
  filter: grayscale(100%) brightness(2);
  opacity: 0.7;
  transition: all .3s ease-in-out;
}

.trust-badges img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

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

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

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

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

.responsible-logos a {
  display: block;
  transition: all .3s ease-in-out;
}

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

.responsible-logos img {
  height: 40px;
  filter: grayscale(100%) brightness(2);
  opacity: 0.5;
  transition: all .3s ease-in-out;
}

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

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

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

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

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

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

.footer-disclaimer {
  max-width: 700px;
  margin: 12px auto 0;
  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: 28px;
  height: 3px;
  background: var(--accent);
  transition: all .3s ease-in-out;
  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: 1024px) {
  .intro_Rovfe .inner_xYmw9 {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

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

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

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



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

  .top-bar_1fS2F .inner_xYmw9 {
    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(--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(135deg, var(--primary), var(--secondary));
    color: #FFF;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px var(--primary-alpha);
  }

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

  .hamburger {
    display: flex;
  }

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

  .main-nav_uzqZo.active {
    right: 0;
  }

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

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

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

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

@media (max-width: 480px) {
  .inner_xYmw9 { padding: 0 16px; }
  .area_jkB8I { padding: 60px 0px; }
  .intro_Rovfe-ctas { flex-direction: column; }
  .intro_Rovfe-ctas .button_yaMtw { width: 100%; }

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