/* Casino Landing Page Styles - Emerald Fortune + Industrial */

@import url("https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;500;700&display=swap");

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

  --font-family-heading: 'Anton', sans-serif;
  --font-family-body: 'Roboto', sans-serif;

  --element-spacing: 20px;
  --section-padding: 50px;
  --gap: 20px;
  --border-radius-sm: 4px;
  --border-radius-lg: 8px;
  --border-radius-md: 6px;
  --border-radius-full: 4px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 20px;
}


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

.skip-nav {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background: var(--c-primary);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  z-index: 10000;
  transition: top 0.35s ease;
}

.skip-nav: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-motion {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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



html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-family-body);
  background: var(--c-darker);
  color: var(--c-light);
  line-height: 1.7em;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 900;
  line-height: 1.15;
  color: var(--c-light);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
}

/* ==================== CONTAINER ==================== */

.wrapper_U78hs {
  width: 100%;
  max-width: 1220px;
  margin: 0px auto;
  padding-block: 0;
  padding-inline: 48px;
}

/* -- HEADER -- */

.masthead_o0pxV {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.masthead_o0pxV.scrolled {
  background: rgba(0,0,0,0.8);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.masthead_o0pxV .wrapper_U78hs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.masthead_o0pxV .logo {
  font-family: var(--font-family-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--c-light);
  letter-spacing: -0.3px;
}

.masthead_o0pxV .logo span {
  color: var(--c-primary);
}

.nav-links_Dg8Te {
  display: flex;
  gap: 32px;
}

.nav-links_Dg8Te a {
  font-weight: 500;
  color: var(--c-muted);
  font-size: 14px;
  transition: color 0.35s ease;
}

.nav-links_Dg8Te a:hover {
  color: var(--c-primary);
}

.masthead_o0pxV-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

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

.action_x01rA {
  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-family-body);
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.action_x01rA--primary {
  background: var(--c-primary);
  border: none;
  box-shadow: 0 4px 14px var(--c-primary-alpha);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--c-primary-alpha);
}

.action_x01rA--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px var(--c-primary-alpha);
}

.action_x01rA--secondary {
  background: transparent;
  border: solid 2px rgb(255 255 255 / 20%);
  color: var(--c-light);
}

.action_x01rA--secondary:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.action_x01rA--large {
  padding-block: 16px;
  padding-inline: 36px;
  font-size: 16px;
}

.action_x01rA--small {
  padding: 8px 20px;
  font-size: 13px;
}

/* ==================== HERO ==================== */

.banner_nub0W {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-right: 0;
  padding-bottom: 60px;
  padding-left: 0;
}

.banner_nub0W::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -200px;
  width: 700px;
  height: 800px;
  background: radial-gradient(circle, var(--c-primary-alpha) 0%, transparent 70%);
  pointer-events: none;
}

.banner_nub0W::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -200px;
  width: 500px;
  height: 550px;
  background: radial-gradient(circle, var(--c-secondary-alpha) 0%, transparent 70%);
  pointer-events: none;
}

.banner_nub0W .wrapper_U78hs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner_nub0W-content {
}

.banner_nub0W-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
  padding-right: 16px;
  padding-bottom: 6px;
  padding-left: 16px;
  background: var(--c-primary-alpha);
  border-width: 1px;
  border-style: solid;
  border-color: var(--c-primary-alpha);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
}

.banner_nub0W-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}

.banner_nub0W-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--c-light);
}

.banner_nub0W-content h1 em {
  font-style: normal;
  color: var(--c-primary);
}

.banner_nub0W-subtitle {
  font-size: 1.063rem;
  color: var(--c-muted);
  margin-bottom: 2rem;
  max-width: 440px;
  line-height: 1.7em;
}

.banner_nub0W-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.banner_nub0W-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}


.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1220px;
  margin: 0 auto;
  padding-top: 0;
  padding-right: 48px;
  padding-bottom: 80px;
  padding-left: 48px;
}

.stat-block {
  text-align: center;
  padding-top: 32px;
  padding-right: 16px;
  padding-bottom: 32px;
  padding-left: 16px;
  position: relative;
}

.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.highlight-num {
  font-family: var(--font-family-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-light);
  letter-spacing: -1px;
}

.highlight-num em {
  font-style: normal;
  color: var(--c-primary);
}

.key-label {
  font-size: 0.813rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-top: 4px;
}


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

.area_Ble0w--gray {
  background: rgba(255,255,255,0.04);
}

.area_Ble0w-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
}

.area_Ble0w-head {
  text-align: center;
  margin-bottom: 56px;
}

.area_Ble0w-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -1px;
  margin-bottom: 0.88rem;
}

.area_Ble0w-head p {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 500px;
  margin-inline: auto;
}

.area_Ble0w-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.area_Ble0w-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--c-muted);
  margin-bottom: 48px;
  max-width: 480px;
  margin-inline: auto;
}

/* Cards */

.card_EBWN3 {
  background: var(--c-dark);
  border-radius: 18px;
  padding-block: 32px;
  padding-inline: 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.card_EBWN3:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/** Bonus Cards **/

.items_rD3l5--bonuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card_EBWN3--bonus {
  position: relative;
  overflow: hidden;
}

.card_EBWN3--bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
}

.bonus-step {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.card_EBWN3--bonus h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-light);
}

.card_EBWN3--bonus p {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.bonus-badge {
  display: inline-block;
  background: var(--c-primary-alpha);
  color: var(--c-primary);
  padding-top: 5px;
  padding-right: 14px;
  padding-bottom: 5px;
  padding-left: 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 1rem;
}


.items_rD3l5--games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card_EBWN3--game {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.card_EBWN3--game:hover {
  border-color: var(--c-primary);
}

.game-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--c-dark);
}

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

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

.game-info {
  padding: 14px 16px;
}

.game-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--c-light);
}

.game-info span {
  font-size: 12px;
  color: var(--c-muted);
}

.card_EBWN3-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  place-content: center;
  place-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

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

.card_EBWN3-name {
  font-weight: 600;
  color: #ffffff;
}

/** Provider Cards **/

.items_rD3l5--providers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.card_EBWN3--provider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.card_EBWN3--provider:hover {
  border-color: var(--c-primary);
}

.card_EBWN3--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.35s ease;
}

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

.card_EBWN3--provider span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

/** Split Layout **/

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.split-block {
  border-radius: 16px;
  padding-block: 40px;
  padding-inline: 36px;
}

.split-block--dark {
  background: var(--c-darker);
  color: #ffffff;
}

.split-block--dark .area_Ble0w-tag {
  color: var(--c-accent);
}

.split-block--dark h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0.75rem 0px 28px;
}

.pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pay-chip {
  background: rgba(255,255,255,0.08);
  border: solid 1px rgba(255,255,255,0.12);
  border-radius: 10px;
  padding-block: 10px;
  padding-inline: 20px;
  font-size: 13px;
  color: rgb(255 255 255 / 75%);
  font-weight: 500;
  transition: background 0.35s ease;
}

.pay-chip:hover {
  background: rgb(255 255 255 / 15%);
}

.split-block--white {
  background: var(--c-dark);
  border: 1px solid rgba(255,255,255,0.08);
}

.split-block--white h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0.75rem 0px 28px;
}

/* ===== Reviews ===== */

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

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

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

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

.reviewer-info strong {
  display: block;
  color: var(--c-light);
}

.stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
}

.review-item {
  padding: 20px 0px;
  border: 1px 0 0 0 solid rgba(255,255,255,0.08);
}

.review-item:first-child {
  border-top: none;
  padding-top: 0px;
}

.review-stars {
  color: #fbbf24;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 6px;
  font-style: italic;
}

.review-who {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--c-light);
}

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

/* ==================== PAYMENTS TABLE ==================== */

.payments-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
}

.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

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

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

.payments-table th {
  font-weight: 600;
  color: var(--c-accent);
  text-transform: capitalize;
  font-size: 0.813rem;
}

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

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

/* ===== About ===== */

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

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

.feature-block--alt {
  direction: rtl;
}

.feature-block--alt > * {
  direction: ltr;
}

.feature-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--c-light);
}

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

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual img {
  width: 100%;
  max-width: 400px;
  max-height: 300px;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
}

/* CTA BLOCKS */

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

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

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

.area_Ble0w--cta h2 em {
  font-style: normal;
}

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

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

.area_Ble0w--cta .action_x01rA:hover {
  background: rgb(255 255 255 / 20%);
  color: #ffffff;
}

/* SEO Text */

.info-block {
  margin-top: 48px;
  padding-top: 36px;
  padding-right: 36px;
  padding-bottom: 36px;
  padding-left: 36px;
  background: var(--c-dark);
  border-radius: var(--border-radius-lg);
  border: solid 1px rgba(255,255,255,0.08);
}

.info-block h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  color: var(--c-light);
}

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

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

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

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

.seo-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--c-light);
}

.seo-content h3 {
  font-size: 24px;
  margin-top: 32px;
  margin-right: 0;
  margin-bottom: 16px;
  margin-left: 0;
  color: var(--c-light);
}

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


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

.faq-item {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  padding-block: 22px;
  padding-inline: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-light);
  text-align: left;
  transition: color 0.35s ease;
}

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

.faq-icon {
  width: 28px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-primary-alpha);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

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

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

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

.faq-answer p {
  padding: 0 0 22px;
  color: var(--c-muted);
  line-height: 1.7;
}

/*! Info Table */

.info-table {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: var(--c-dark);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: solid rgba(255,255,255,0.08) 1px;
}

.info-table tr {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.08);
}

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

.info-table th,
.info-table td {
  padding-top: 18px;
  padding-right: 24px;
  padding-bottom: 18px;
  padding-left: 24px;
  text-align: left;
}

.info-table th {
  width: 40%;
  font-weight: 600;
  color: var(--c-primary);
  background: rgb(255 255 255 / 3%);
}

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

/*
 * CTA Bottom
 */

.cta-bottom {
  text-align: center;
  padding-top: 100px;
  padding-right: 48px;
  padding-bottom: 100px;
  padding-left: 48px;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}

.cta-bottom::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, var(--c-primary-alpha) 0%, transparent 70%);
  pointer-events: none;
}

.cta-bottom h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}

.cta-bottom h2 em {
  font-style: normal;
  color: var(--c-primary);
}

.cta-bottom p {
  color: var(--c-muted);
  font-size: 17px;
  margin-bottom: 36px;
  position: relative;
}

/* ===== Footer ===== */

.colophon_imM7G {
  background: var(--c-darker);
  padding-top: 60px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.colophon_imM7G-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.colophon_imM7G-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #ffffff;
}

.colophon_imM7G-col p {
  color: rgb(255 255 255 / 50%);
  line-height: 1.7em;
  font-size: 14px;
}

.colophon_imM7G-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.colophon_imM7G-nav a {
  color: rgb(255 255 255 / 60%);
  font-size: 14px;
}

.colophon_imM7G-nav a:hover {
  color: #ffffff;
}

.cert-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 50px;
  filter: grayscale(100%);
  transition: all 0.35s ease;
}

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

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

.responsible-gaming h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.5);
}

.responsible-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  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;
}

.responsible-gaming a:hover {
  transform: translateY(-5px);
}

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

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

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

.colophon_imM7G-bottom p {
  font-size: 0.813rem;
  color: rgb(255 255 255 / 40%);
  margin-bottom: 8px;
}

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

.footer-update {
  margin-top: 16px;
  opacity: 0.6;
}

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

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

/*
 * Hamburger
 */

.mobile-nav-btn {
  display: none;
  flex-direction: column;
  gap: 0.31rem;
  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: 26px;
  height: 2px;
  background: var(--c-light);
  transition: all 0.35s ease;
  border-radius: 2px;
}

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

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

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

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


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

  .banner_nub0W-content { order: 1; }
  .banner_nub0W-image { order: 2; }
  .banner_nub0W-subtitle { margin-left: auto; margin-right: auto; }
  .banner_nub0W-ctas { justify-content: center; }
  .banner_nub0W-image img { max-width: 480px; margin: 0 auto; }

  .wrapper_U78hs { padding-left: 32px; padding-right: 32px; }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 32px;
    padding-right: 32px;
  }

  .items_rD3l5--bonuses { grid-template-columns: 1fr; }
  .items_rD3l5--games { grid-template-columns: repeat(3, 1fr); }
  .items_rD3l5--providers { grid-template-columns: repeat(4, 1fr); }
  .items_rD3l5--reviews { grid-template-columns: 1fr; }

  .split-row { grid-template-columns: 1fr; }

  .feature-block { grid-template-columns: 1fr; }
  .feature-block--alt { direction: ltr; }

  .cta-bottom {
    padding-left: 32px;
    padding-right: 32px;
  }

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

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

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

/** Responsive - Mobile **/

@media (max-width: 770px) {
  .masthead_o0pxV .wrapper_U78hs {
    height: auto;
    padding: 12px 20px;
    gap: 10px;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    font-family: var(--font-family-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--c-light);
    text-decoration: none;
    white-space: nowrap;
  }

  .logo-mobile span {
    color: var(--c-primary);
  }

  .mobile-cta {
    display: block;
    flex: 1;
    max-width: 160px;
    padding: 9px 16px;
    background: var(--c-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 4px 14px var(--c-primary-alpha);
  }

  .masthead_o0pxV-actions {
    display: none;
  }

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

  .nav-links_Dg8Te {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--c-dark);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 32px rgb(0 0 0 / 50%);
    border-left: 2px solid var(--c-primary);
    z-index: 1001;
    gap: 0px;
    overflow-y: auto;
  }

  .nav-links_Dg8Te.active {
    right: 0;
  }

  .nav-links_Dg8Te a {
    font-size: 18px;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--c-light);
  }

  .banner_nub0W { padding-top: 48px; padding-bottom: 32px; }
  .banner_nub0W-content h1 { font-size: 2rem; }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .area_Ble0w { padding: 60px 0px; }
  .wrapper_U78hs { padding: 0 20px; }
  .area_Ble0w-title { font-size: 1.75rem; }
  .area_Ble0w-head h2 { font-size: 1.75rem; }
  .cta-bottom { padding: 60px 20px; }

  .items_rD3l5--bonuses { grid-template-columns: 1fr; }
  .items_rD3l5--games { grid-template-columns: repeat(2, 1fr); }
  .items_rD3l5--providers { grid-template-columns: repeat(3, 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;
  }

  .split-block {
    padding: 28px 24px;
    border-radius: 14px;
  }

  .pay-grid { gap: 8px; }

  .card_EBWN3 { padding: 24px 20px; }
  .card_EBWN3--review { padding: 20px; }

  .info-block { padding: 24px 20px; }

  .info-table th,
  .info-table td { padding: 14px 16px; }
}

@media (max-width: 481px) {
  .wrapper_U78hs { padding: 0 16px; }
  .banner_nub0W-ctas { flex-direction: column; }
  .banner_nub0W-ctas .action_x01rA { width: 100%; }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .items_rD3l5--games { grid-template-columns: 1fr 1fr; }
  .items_rD3l5--providers { grid-template-columns: repeat(2, 1fr); }

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

  .cta-bottom { padding: 48px 16px; }
  .cta-bottom h2 { font-size: 1.75rem; }

  .split-block {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .card_EBWN3 { padding: 20px 16px; }
  .info-block { padding: 20px 16px; }

  .info-table th,
  .info-table td { padding: 12px 14px; }

  .info-table th { width: 45%; }
}