/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Crimson & Black
 * Typography: Bold Impact
 * Generated: 2026-08-25T19:54:31.103Z
 */

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

:root {
  --c-dark: #1a0a0a;
  --c-accent: #fb923c;
  --c-primary-alpha: #dc262640;
  --c-darker: #0d0505;
  --c-light: #fef2f2;
  --c-muted: #f87171;
  --c-secondary: #f97316;
  --c-primary: #dc2626;
  --c-secondary-alpha: #f9731640;
  --c-text: #fecaca;

  --font-family-body: 'Nunito', sans-serif;
  --font-family-heading: 'Oswald', sans-serif;

  --grid-gap: 12px;
  --pad-section: 40px;
  --pad-element: 16px;
  --r-sm: 4px;
  --r-lg: 8px;
  --r-full: 4px;
  --r-md: 6px;
  --sh-card: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
  --sh-elevated: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
  --sh-glow: 0 0 40px;
}

/*! Base */

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


.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-block: 12px;
  padding-inline: 24px;
  background: var(--c-primary);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-full);
  z-index: 10000;
  transition: top 250ms ease-out;
}

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

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



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: 700;
  line-height: 1.15;
  color: var(--c-light);
}

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

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


/* CONTAINER */

.content-wrap_MmMhs {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-block: 0;
  padding-inline: 48px;
}


.site-header_Xn46L {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: solid 0 0 1px 0 rgba(255,255,255,0.08);
  transition: all 250ms ease-out;
}

.site-header_Xn46L.scrolled {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
}

.site-header_Xn46L .content-wrap_MmMhs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-header_Xn46L .logo {
  font-family: var(--font-family-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-light);
  letter-spacing: -0.02em;
}

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

.navigation_qtYrI {
  display: flex;
  gap: 32px;
}

.navigation_qtYrI a {
  font-weight: 500;
  color: var(--c-muted);
  font-size: 14px;
  transition: color 250ms ease-out;
}

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

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

/*
 * Buttons
 */

.action_QXwtZ {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-family-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 250ms ease-out;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.action_QXwtZ--primary {
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 14px var(--c-primary-alpha);
}

.action_QXwtZ--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px var(--c-primary-alpha);
}

.action_QXwtZ--secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--c-light);
}

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

.action_QXwtZ--large {
  padding: 16px 36px;
  font-size: 1rem;
}

.action_QXwtZ--small {
  padding: 8px 20px;
  font-size: 0.813rem;
}

/* HERO */

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

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

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

.hero_Ns8Zc .content-wrap_MmMhs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero_Ns8Zc-content {
}

.hero_Ns8Zc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--c-primary-alpha);
  border: 1px solid var(--c-primary-alpha);
  border-radius: 999px;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 24px;
}

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

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

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

.hero_Ns8Zc-subtitle {
  font-size: 1.063rem;
  color: var(--c-muted);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.7;
}

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

.hero_Ns8Zc-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_Ns8Zc-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-elevated);
}


.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px 80px;
}

.stat-block {
  text-align: center;
  padding-block: 32px;
  padding-inline: 16px;
  position: relative;
}

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

.stat-number {
  font-family: var(--font-family-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-light);
  letter-spacing: -0.03em;
}

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

.stat-text {
  font-size: 13px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 4px;
}


/* SECTIONS */

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

.zone_RMyKk--gray {
  background: rgba(255,255,255,0.025);
}

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

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

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

.zone_RMyKk-head p {
  font-size: 16px;
  color: var(--c-muted);
  max-width: 480px;
  margin-inline: auto;
}

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

.zone_RMyKk-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--c-muted);
  margin-bottom: 3rem;
  max-width: 460px;
  margin: 0px auto;
}

/* -- CARDS -- */

.panel_HNic2 {
  background: var(--c-dark);
  border-radius: 16px;
  padding-top: 32px;
  padding-right: 28px;
  padding-bottom: 32px;
  padding-left: 28px;
  box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.08);
  transition: all 250ms ease-out;
}

.panel_HNic2:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ===== Bonus Cards ===== */

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

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

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

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

.panel_HNic2--bonus p {
  color: var(--c-muted);
  font-size: 0.875rem;
  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: 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* GAME CARDS — PORTRAIT 3/4 WITH OVERLAY */

.layout_jgjO8--games {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.panel_HNic2--game {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.08);
}

.panel_HNic2--game:hover {
  border-color: var(--c-primary);
  transform: none;
  box-shadow: 0 8px 30px rgb(0 0 0 / 50%);
}

.game-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--c-dark);
  position: relative;
}

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

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

.panel_HNic2-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  padding-top: 20px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
}

.panel_HNic2-name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  display: block;
}

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

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

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 4px 20px var(--c-primary-alpha);
  transition: transform 250ms ease-out;
}

.panel_HNic2--game:hover .play-btn {
  transform: translateY(-2px);
}

/*! Provider Cards — Text-only compact */

.layout_jgjO8--providers {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.panel_HNic2--provider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  text-align: center;
  background: var(--c-dark);
  border: solid rgba(255,255,255,0.08) 1px;
  border-radius: var(--r-md);
  transition: all 250ms ease-out;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none;
}

.panel_HNic2--provider:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-primary-alpha);
  transform: none;
  box-shadow: none;
}



.payments-card {
  background: var(--c-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding-block: 40px;
  padding-inline: 36px;
}

.pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

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

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

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

.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  background: rgb(255 255 255 / 2%);
  border-radius: var(--r-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: uppercase;
  font-size: 0.813rem;
}

.payments-table tbody tr {
  border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
  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: 4px 12px;
  background: var(--c-primary-alpha);
  border-radius: var(--r-full);
  font-size: 0.813rem;
  color: var(--c-primary);
}



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

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

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

.reviewer-avatar {
  width: 46px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--c-primary), var(--c-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  font-size: 16px;
}

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

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

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



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

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

.info-row--reverse {
  direction: rtl;
}

.info-row--reverse > * {
  direction: ltr;
}

.info-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--c-light);
}

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

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

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


/*! CTA Blocks — Gradient border card */

.zone_RMyKk--cta {
  text-align: center;
  padding: var(--pad-section) 0px;
}

.cta-card {
  background: linear-gradient(var(--c-dark), var(--c-dark)) padding-box, linear-gradient(145deg, var(--c-primary), var(--c-secondary)) border-box;
  border: 1px solid transparent;
  border-radius: 24px;
  padding-block: 60px;
  padding-inline: 48px;
  position: relative;
  overflow: hidden;
}

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

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-light);
  margin-bottom: 16px;
  position: relative;
}

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

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

.cta-card .action_QXwtZ--primary {
  position: relative;
}

/** SEO Text **/

.details-text {
  margin-top: 3rem;
  padding: 36px;
  background: var(--c-dark);
  border-radius: var(--r-lg);
  border: rgba(255,255,255,0.08) 1px solid;
}

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

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

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

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

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

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

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

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


.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: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-light);
  text-align: left;
  transition: color 250ms ease-out;
}

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

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

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

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

.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 {
  width: 100%;
  max-width: 750px;
  margin: 0px auto;
  border-collapse: separate;
  border-spacing: 0px;
  background: var(--c-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: rgba(255,255,255,0.08) solid 1px;
}

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

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

.info-table tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.info-table th,
.info-table td {
  padding-block: 18px;
  padding-inline: 24px;
  text-align: left;
}

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

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


/* ==================== CTA BOTTOM ==================== */

.cta-bottom {
  text-align: center;
  padding: 100px 48px;
  background: linear-gradient(var(--c-dark), var(--c-dark)) padding-box, linear-gradient(145deg, var(--c-primary), var(--c-secondary)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.cta-bottom::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  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: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  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 — 4 COLUMNS */

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

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

.bottom-bar_sen01-col h4 {
  font-size: 13px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.bottom-bar_sen01-col p {
  color: rgb(255 255 255 / 50%);
  line-height: 1.7em;
  font-size: 0.875rem;
}

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

.bottom-bar_sen01-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.bottom-bar_sen01-nav a:hover {
  color: var(--c-light);
}

.trust-seals {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-seals img {
  height: 28px;
  width: auto;
  filter: grayscale(100%) brightness(2) contrast(0.9);
  transition: all 250ms ease-out;
}

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

.responsible-gaming {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.responsible-gaming a {
  display: block;
  transition: all 250ms ease-out;
}

.responsible-gaming a:hover {
  transform: scale(1.03);
}

.responsible-gaming img {
  height: 28px;
  width: auto;
  filter: grayscale(100%) brightness(2);
  transition: all 250ms ease-out;
}

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

.bottom-bar_sen01-bottom {
  padding: 24px 0;
  text-align: center;
}

.bottom-bar_sen01-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

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

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

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

.footer-disclaimer {
  max-width: 700px;
  margin-top: 12px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  opacity: 0.5;
  line-height: 160%;
}


/* --- Hamburger --- */

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

.burger span {
  width: 26px;
  height: 2px;
  background: var(--c-light);
  transition: all 250ms ease-out;
  border-radius: 2px;
}

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

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

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

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

/* -- RESPONSIVE - TABLET -- */

@media (max-width: 63.9375em) {
  .hero_Ns8Zc .content-wrap_MmMhs {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .content-wrap_MmMhs { padding-left: 32px; padding-right: 32px; }

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

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

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

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

  .bottom-bar_sen01-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

/*! Responsive - Mobile */

@media (max-width: 767px) {
  .site-header_Xn46L .content-wrap_MmMhs {
    height: auto;
    padding: 12px 20px;
    gap: 10px;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    font-family: var(--font-family-heading);
    font-size: 1.063rem;
    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);
  }

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

  .burger {
    display: flex;
  }

  .navigation_qtYrI {
    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 250ms ease-out;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--c-primary);
    z-index: 1001;
    gap: 0px;
    overflow-y: auto;
  }

  .navigation_qtYrI.active {
    right: 0px;
  }

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

  .hero_Ns8Zc { padding-top: 48px; padding-bottom: 32px; }
  .hero_Ns8Zc-image { max-width: 320px; }
  .hero_Ns8Zc-content h1 { font-size: 2rem; }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .zone_RMyKk { padding: 60px 0; }
  .content-wrap_MmMhs { padding: 0px 20px; }
  .zone_RMyKk-title { font-size: 1.75rem; }
  .zone_RMyKk-head h2 { font-size: 1.75rem; }
  .cta-bottom { padding: 60px 20px; border-radius: 12px; }
  .cta-card { padding: 40px 24px; border-radius: 14px; }

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

  .payments-card { padding: 28px 24px; border-radius: 14px; }

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

  .details-text { padding: 24px 20px; }

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

  .bottom-bar_sen01-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 29.9375rem) {
  .content-wrap_MmMhs { padding: 0 16px; }
  .hero_Ns8Zc-ctas { flex-direction: column; }
  .hero_Ns8Zc-ctas .action_QXwtZ { width: 100%; }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .layout_jgjO8--games { grid-template-columns: repeat(2, 1fr); }
  .layout_jgjO8--providers { grid-template-columns: repeat(3, 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; }
  .cta-card { padding: 36px 20px; }

  .panel_HNic2 { padding: 20px 16px; }
  .details-text { padding: 20px 16px; }

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

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