/*
 * Theme: Teal Wave
 * Typography: Futuristic
 */

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

:root {
  /* Colors */
  --c-light: #f0fdfa;
  --c-primary: #14b8a6;
  --c-text: #ccfbf1;
  --c-accent: #5eead4;
  --c-muted: #5eead4;
  --c-secondary-alpha: #2dd4bf40;
  --c-dark: #042f2e;
  --c-darker: #021716;
  --c-primary-alpha: #14b8a640;
  --c-secondary: #2dd4bf;

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

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

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

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



*, *::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(--c-primary);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--rounded-md);
  z-index: 10000;
  transition: top 0.35s ease-in;
}

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

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

@keyframes do-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-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(--ff-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 ease-in;
}



/* Container */

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



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

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

.top-bar_nTPjU.scrolled {
  background: rgb(0 0 0 / 90%);
  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_nTPjU .wrapper_EnbRA {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.main-nav_btap0 {
  display: flex;
  gap: 2rem;
}

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

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

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



/* BUTTONS */

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

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

.cta_A4i0A--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--sh-elevated);
  background: var(--c-primary);
  color: rgb(255, 255, 255);
}

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

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

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

.cta_A4i0A--small {
  padding-block: 8px;
  padding-inline: 20px;
  font-size: 0.875rem;
}


/** Hero **/

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

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

.intro_1gquQ-content {
  order: 2;
}

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

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

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

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

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

.intro_1gquQ-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

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

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

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


/* -- SECTIONS -- */

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

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

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



/* ==================== CARDS ==================== */

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

.box_QkU5E:hover {
  transform: scale(1.05);
  box-shadow: var(--sh-elevated);
  border-color: var(--c-primary);
}

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

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

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

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

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

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

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

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

.box_QkU5E--game:hover img {
  transform: scale(1.07);
}

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

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

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

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

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

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

.box_QkU5E--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  opacity: 0.4;
  transition: all 0.35s ease-in;
}

.box_QkU5E--provider:hover img {
  filter: none;
  transform: scale(1.1);
}

.box_QkU5E--provider span {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 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 0.35s ease-in;
}

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

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

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

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

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

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

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

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




.content-pairs {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

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

.pair-row--reversed {
  direction: rtl;
}

.pair-row--reversed > * {
  direction: ltr;
}

.pair-content h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--c-accent);
}

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

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

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




.section_6Rtn4--cta {
  text-align: center;
  padding-top: 80px;
  padding-right: 0;
  padding-bottom: 80px;
  padding-left: 0;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.section_6Rtn4--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

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

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

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

.section_6Rtn4--cta .cta_A4i0A:hover {
  background: var(--c-dark);
  color: #fff;
}




.payments-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--rounded-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(--c-accent);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.payments-table tbody tr {
  border: 0 0 1px 0 solid rgba(255, 255, 255, 0.05);
  transition: background 0.35s ease-in;
}

.payments-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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



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

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

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

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

.section_6Rtn4--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: #fff;
}

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

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



/* ==================== FAQ ==================== */

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

.faq-item {
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: var(--rounded-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: 1.063rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
  transition: color 0.35s ease-in;
}

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

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

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

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

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

.faq-answer p {
  padding: 0 24px 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: 0;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--rounded-lg);
  overflow: hidden;
}

.info-table tr {
  border: solid 0 0 1px 0 rgba(255,255,255,0.05);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table th,
.info-table td {
  padding-block: 20px;
  padding-inline: 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
 */

.footer_SmYCr {
  background: var(--c-darker);
  padding: 80px 0px 0 0;
  border: 1px 0 0 0 solid rgb(255 255 255 / 5%);
}

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

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

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

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

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

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

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

.trust-seals img {
  height: 50px;
  opacity: 0.4;
  transition: all 0.35s ease-in;
}

.trust-seals 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: 0;
  border: 1px 0 solid rgba(255,255,255,0.05);
}

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

.responsible-text {
  font-size: 14px;
  color: var(--c-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(-4px);
}

.responsible-gaming img {
  height: 40px;
  filter: grayscale(100%);
  transition: all 0.35s ease-in;
}

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

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

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

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

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




.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: 3px;
  background: var(--c-accent);
  transition: all 0.35s ease-in;
  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;
}


/* -- RESPONSIVE - TABLET -- */

@media (max-width: 64em) {
  .intro_1gquQ .wrapper_EnbRA {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .pair-row { grid-template-columns: 1fr; }
  .pair-row--reversed { direction: ltr; }

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

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

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


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

@media (max-width: 48rem) {
  .top-bar_nTPjU {
    padding: 0px;
  }

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

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    font-family: var(--ff-heading);
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--c-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(--c-primary), var(--c-secondary));
    color: rgb(255,255,255);
    font-size: 13px;
    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);
  }

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

  .menu-toggle {
    display: flex;
  }

  .main-nav_btap0 {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 85%;
    max-width: 420px;
    height: 100vh;
    background: var(--c-darker);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.35s ease-in;
    box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
    border-left: 2px solid var(--c-primary);
    z-index: 1001;
    gap: 0px;
  }

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

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

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

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

@media (max-width: 479px) {
  .wrapper_EnbRA { padding: 0 16px; }
  .section_6Rtn4 { padding: 60px 0px; }
  .intro_1gquQ-ctas { flex-direction: column; }
  .intro_1gquQ-ctas .cta_A4i0A { width: 100%; }

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