

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

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

  --typo-heading: 'Russo One', sans-serif;
  --typo-body: 'Lato', sans-serif;

  --element-spacing: 20px;
  --section-padding: 50px;
  --gap: 20px;
  --rad-sm: 8px;
  --rad-md: 12px;
  --rad-full: 8px;
  --rad-lg: 16px;
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.35);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 30px;
}



/* 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(--primary);
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--rad-md);
  z-index: 10000;
  transition: top 250ms ease-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;
  }
}



/* --- Animations --- */

@keyframes fadeIn-up {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp-anim {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  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(--darker);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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



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



/* HEADER */

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

.masthead_CYVTV.scrolled {
  background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(20px);
  padding-top: 12px;
  padding-right: 0;
  padding-bottom: 12px;
  padding-left: 0px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.masthead_CYVTV .inner_cJqGN {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.main-nav_ZIi5d a {
  font-weight: 500;
  color: var(--text);
  opacity: 0.8;
  transition: all 250ms ease-out;
}

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

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




.link-btn_eTlxD {
  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(--rad-md);
  cursor: pointer;
  transition: all 250ms ease-out;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

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

.link-btn_eTlxD--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

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

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

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

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



/* ===== Hero ===== */

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

.showcase_PytIK::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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;
}

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

.showcase_PytIK-content {
}

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

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

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

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

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

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

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

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

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

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



/* -- SECTIONS -- */

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

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

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



/*
 * Cards
 */

.item_6LoVq {
  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: rgba(255, 255, 255, 0.08);
  border-radius: var(--rad-lg);
  padding: var(--element-spacing);
  transition: all 250ms ease-out;
}

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

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

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

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

.item_6LoVq--bonus h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

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

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

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

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

.item_6LoVq--game:hover img {
  transform: scale(1.05);
}

.item_6LoVq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  place-content: center;
  place-items: center;
  opacity: 0;
  transition: opacity 250ms ease-out;
}

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

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

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

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

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

.item_6LoVq--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 250ms ease-out;
}

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

.item_6LoVq--provider span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 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 250ms ease-out;
}

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

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

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

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

.reviewer-avatar {
  width: 54px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--primary), var(--secondary));
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #ffffff;
}

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

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

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



/* ABOUT / ZIGZAG */

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

.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: 32px;
  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: 380px;
  max-height: 340px;
  object-fit: contain;
}


/** CTA Blocks **/

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

.zone_njPwE--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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;
}

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

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

.zone_njPwE--cta .link-btn_eTlxD {
  position: relative;
  background: #fff;
  color: var(--primary);
}

.zone_njPwE--cta .link-btn_eTlxD:hover {
  background: var(--dark);
  color: rgb(255, 255, 255);
}



/* ===== Payments Table ===== */

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

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

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



/*
 * SEO Text
 */

.text-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(--rad-lg);
  border: solid rgba(255,255,255,0.05) 1px;
}

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

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

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

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

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

.seo-content h2 {
  font-size: 40px;
  margin-bottom: 24px;
  color: #FFF;
}

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

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



/* FAQ */

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

.faq-item {
  border: solid 1px rgb(255 255 255 / 8%);
  border-radius: var(--rad-md);
  margin-bottom: 12px;
  overflow: hidden;
  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: 1.063rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-align: left;
  transition: all 250ms ease-out;
}

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

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

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

.faq-answer {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 250ms ease-out;
}

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

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 180%;
}



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

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

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

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

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

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

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

.end-section_p5DQM-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

.trust-badges img {
  height: 50px;
  filter: grayscale(80%) brightness(1.5);
  transition: all 250ms ease-out;
}

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

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

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

.responsible-text {
  font-size: 0.875rem;
  color: var(--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 250ms ease-out;
}

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

.responsible-logos img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 250ms ease-out;
}

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

.end-section_p5DQM-bottom {
  padding-top: 24px;
  padding-right: 0;
  padding-bottom: 24px;
  padding-left: 0;
  text-align: center;
}

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

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

.footer-update {
  margin-top: 16px;
  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 **/

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1002;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--accent);
  transition: all 250ms ease-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: 63.9375rem) {
  .showcase_PytIK .inner_cJqGN {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

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

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

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



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

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

  .masthead_CYVTV .inner_cJqGN {
    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(--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(150deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-radius: var(--rad-md);
    box-shadow: 0 4px 15px var(--primary-alpha);
  }

  .masthead_CYVTV-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-nav_ZIi5d {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--darker);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 250ms ease-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_ZIi5d.active {
    right: 0;
  }

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

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

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

@media (max-width: 29.9375rem) {
  .inner_cJqGN { padding: 0px 16px; }
  .zone_njPwE { padding: 60px 0px; }
  .showcase_PytIK-ctas { flex-direction: column; }
  .showcase_PytIK-ctas .link-btn_eTlxD { width: 100%; }

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