/*!
 * Stylesheet: Crimson & Black
 * Fonts: Oswald / Nunito
 * Date: 2026-08-13T19:22:17.242Z
 */

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

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

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;

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

  /* Border Radius */
  --border-radius-full: 100px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-sm: 4px;

  /* Shadows */
  --sh-card: 0 4px 20px rgba(0,0,0,0.25);
  --sh-glow: 0 0 30px;
  --sh-elevated: 0 8px 30px rgba(0,0,0,0.35);
}


/*
 * Base
 */

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



.jump-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  z-index: 10000;
  transition: top 300ms ease-out;
}

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


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

@keyframes slideUp-fx {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}



html {
  scroll-behavior: smooth;
}

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

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

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

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



/* Container */

.wrapper_Q60J2 {
  max-width: 1280px;
  margin: 0px auto;
  padding-top: 0;
  padding-right: 24px;
  padding-bottom: 0;
  padding-left: 24px;
}



/* --- Header --- */

.header_B8ZTp {
  position: fixed;
  top: 0;
  left: 0px;
  right: 0px;
  z-index: 1000;
  padding-block: 16px;
  padding-inline: 0px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  transition: all 300ms ease-out;
}

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

.header_B8ZTp .wrapper_Q60J2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

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



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

.btn_9g36t {
  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-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all 300ms ease-out;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.btn_9g36t--primary {
  background: var(--color-primary);
  border: none;
  color: #fff;
}

.btn_9g36t--primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-elevated);
}

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

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

.btn_9g36t--large {
  padding-top: 18px;
  padding-right: 40px;
  padding-bottom: 18px;
  padding-left: 40px;
  font-size: 1.063rem;
}

.btn_9g36t--small {
  padding-top: 8px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 0.875rem;
}



/* Hero */

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

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

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

.hero_EAh5C-content {
}

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

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

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

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

.hero_EAh5C-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

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

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

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

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

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


/* --- Sections --- */

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

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

.section_tK5bE-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--color-muted);
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}



/*
 * Cards
 */

.card_00Tin {
  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(--border-radius-lg);
  padding: var(--sp-element);
  transition: all 300ms ease-out;
}

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

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

.card_00Tin--bonus {
  text-align: center;
  padding: 40px 30px;
}

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

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

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

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

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

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

.card_00Tin--game:hover img {
  transform: scale(1.08);
}

.card_00Tin-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 300ms ease-out;
}

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

.card_00Tin-info {
  position: absolute;
  bottom: 0;
  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));
}

.card_00Tin-name {
  font-weight: 600;
  color: white;
}

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

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

.card_00Tin--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  opacity: 0.4;
  transition: all 300ms ease-out;
}

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

.card_00Tin--provider span {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0px;
  padding: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
  text-align: center;
  background: linear-gradient(transparent, rgb(0 0 0 / 60%));
  opacity: 0;
  transition: opacity 300ms ease-out;
}

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

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

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

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

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

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

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

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




.content-pairs {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

.pair-content p {
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

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




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

.section_tK5bE--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.35;
}

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

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

.section_tK5bE--cta .btn_9g36t {
  position: relative;
  background: white;
  color: var(--color-primary);
}

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


/** Payments Table **/

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

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

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

.payments-table th {
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 0.813rem;
  letter-spacing: 0.03em;
}

.payments-table tbody tr {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgb(255 255 255 / 5%);
  transition: background 300ms 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-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  background: var(--color-primary-alpha);
  border-radius: var(--border-radius-full);
  font-size: 0.813rem;
  color: var(--color-accent);
}


/* ==================== SEO TEXT ==================== */

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

.about-text h3 {
  font-size: 24px;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}

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

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

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

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

.seo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

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

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



/* FAQ */

.faq-list {
  max-width: 750px;
  margin-inline: auto;
}

.faq-item {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  margin-bottom: 0.75rem;
  background: rgb(255 255 255 / 2%);
}

.faq-question {
  width: 100%;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
  transition: color 300ms ease-out;
}

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

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

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

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

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

.faq-answer p {
  padding-top: 0;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  color: var(--color-muted);
  line-height: 1.8em;
}



/* INFO TABLE */

.info-table {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,0.02);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.info-table tr {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgb(255 255 255 / 5%);
}

.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(--color-accent);
  background: rgba(255,255,255,0.02);
}

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



/* Footer */

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

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

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

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

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

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

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

.cert-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 50px;
  filter: grayscale(100%) brightness(2) contrast(0.9);
  transition: all 300ms ease-out;
}

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

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

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

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

.gaming-care {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gaming-care a {
  display: block;
  transition: all 300ms ease-out;
}

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

.gaming-care img {
  height: 40px;
  filter: grayscale(80%) brightness(1.5);
  transition: all 300ms ease-out;
}

.gaming-care a:hover img {
  filter: saturate(1) brightness(1);
  opacity: 1;
}

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

.footer_6tLRt-bottom p {
  font-size: 14px;
  color: var(--color-muted);
  opacity: 0.7;
  margin-bottom: 8px;
}

.footer_6tLRt-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: 160%;
}



/* HAMBURGER & MOBILE */

.toggle-btn {
  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;
}

.toggle-btn span {
  width: 30px;
  height: 2px;
  background: var(--color-accent);
  transition: all 300ms ease-out;
  border-radius: 2px;
}

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

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

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

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




@media (max-width: 1025px) {
  .hero_EAh5C .wrapper_Q60J2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

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

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

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

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



@media (max-width: 767px) {
  .header_B8ZTp {
    padding: 0;
  }

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

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-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(--color-primary), var(--color-secondary));
    color: #FFFFFF;
    font-size: 0.813rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.8px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px var(--color-primary-alpha);
  }

  .header_B8ZTp-actions {
    display: none;
  }

  .toggle-btn {
    display: flex;
  }

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

  .nav_qVjxg.active {
    right: 0;
  }

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

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

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

@media (max-width: 500px) {
  .wrapper_Q60J2 { padding: 0px 16px; }
  .section_tK5bE { padding: 60px 0px; }
  .hero_EAh5C-ctas { flex-direction: column; }
  .hero_EAh5C-ctas .btn_9g36t { width: 100%; }

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