/* Casino Landing Page Styles - Sunset Orange + Elegant Serif */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
    /* Colors */
    --theme-primary: #ea580c;
    --theme-text: #fed7aa;
    --theme-secondary: #f97316;
    --theme-light: #fff7ed;
    --theme-accent: #fdba74;
    --theme-primary-alpha: #ea580c40;
    --theme-dark: #1a0f05;
    --theme-secondary-alpha: #f9731640;
    --theme-muted: #fb923c;
    --theme-darker: #0d0802;

    /* Typography */
    --font-family-heading: 'Playfair Display', sans-serif;
    --font-family-body: 'Source Sans Pro', sans-serif;

    /* Spacing */
    --pad-section: 50px;
    --grid-gap: 20px;
    --pad-element: 20px;

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

    /* Shadows */
    --shadow-glow: 0 0 50px;
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.5);
    --shadow-sm: 0 8px 40px rgba(0,0,0,0.4);
}


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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--theme-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-anim {
    from { opacity: 0; }
    to { opacity: 1; }
}

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



html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Container */

.container_q8pkC {
    max-width: 1280px;
    margin: 0px auto;
    padding-block: 0;
    padding-inline: 24px;
}


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

.nav-wrap_EQlxe.scrolled {
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 12px 0px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-wrap_EQlxe .container_q8pkC {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wrap_EQlxe .logo {
    font-family: var(--font-family-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-accent);
    text-transform: capitalize;
    letter-spacing: 1px;
}

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

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

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

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

/* --- Buttons --- */

.link-btn_nKEAA {
    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: 15px;
    font-weight: 600;
    border-radius: var(--rounded-md);
    cursor: pointer;
    transition: all 300ms ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-btn_nKEAA--primary {
    background: var(--theme-primary);
    border: none;
    color: #FFF;
}

.link-btn_nKEAA--primary:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

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

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

.link-btn_nKEAA--large {
    padding-block: 18px;
    padding-inline: 40px;
    font-size: 1.063rem;
}

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

/* HERO */

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

.intro_TfZZV::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, var(--theme-primary-alpha) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, var(--theme-secondary-alpha) 0%, transparent 40%);
    pointer-events: none;
}

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

.intro_TfZZV-content {
    order: 2;
}

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

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

.intro_TfZZV-subtitle {
    font-size: 1.25rem;
    color: var(--theme-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

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

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

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

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

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

/*
 * Sections
 */

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

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

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

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

.item_mlUtW {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgb(255 255 255 / 2%) 100%);
    border: solid 1px rgba(255,255,255,0.08);
    border-radius: var(--rounded-lg);
    padding: var(--pad-element);
    transition: all 300ms ease-in-out;
}

.item_mlUtW:hover {
    transform: translate(0, -6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--theme-primary);
}

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

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

.item_mlUtW-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.item_mlUtW--bonus h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--theme-accent);
}

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

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

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

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

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

.item_mlUtW-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}

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

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

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

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

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

.item_mlUtW--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    transition: all 300ms ease-in-out;
}

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

.item_mlUtW--provider span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--theme-muted);
    text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}

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

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

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

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

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

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

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

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

/* --- About / Zigzag --- */

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

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

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

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

.zigzag-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--theme-accent);
}

.zigzag-content p {
    color: var(--theme-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: 400px;
    max-height: 300px;
    object-fit: contain;
}

/* ==================== CTA BLOCKS ==================== */

.segment_cJb5S--cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.segment_cJb5S--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

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

.segment_cJb5S--cta .link-btn_nKEAA {
    position: relative;
    background: white;
    color: var(--theme-primary);
}

.segment_cJb5S--cta .link-btn_nKEAA:hover {
    background: var(--theme-dark);
    color: white;
}

/* PAYMENTS TABLE */

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

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

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

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

.payments-table th {
    font-weight: 600;
    color: var(--theme-accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.payments-table tbody tr {
    border: solid 0 0 1px 0 rgba(255,255,255,0.05);
    transition: background 300ms ease-in-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(--theme-primary-alpha);
    border-radius: var(--rounded-full);
    font-size: 0.813rem;
    color: var(--theme-accent);
}

/*
 * SEO Text
 */

.seo-text {
    margin-top: 48px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--rounded-lg);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.05);
}

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

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

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

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

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

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

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

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

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

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

.faq-item {
    border: rgba(255,255,255,0.08) 1px solid;
    border-radius: var(--rounded-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.063rem;
    font-weight: 600;
    color: rgb(255,255,255);
    text-align: left;
    transition: all 300ms ease-in-out;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--theme-primary);
    transition: transform 300ms ease-in-out;
}

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

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

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

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

/* --- Info Table --- */

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

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

.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(--theme-accent);
    background: rgb(255 255 255 / 2%);
}

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

/*! Footer */

.bottom-bar_6PASi {
    background: var(--theme-darker);
    padding-top: 80px;
    padding-right: 0px;
    padding-bottom: 0;
    padding-left: 0;
    border: solid 1px 0 0 0 rgba(255, 255, 255, 0.05);
}

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

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

.bottom-bar_6PASi-col p {
    color: var(--theme-muted);
    line-height: 1.8em;
}

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

.bottom-bar_6PASi-nav a {
    color: var(--theme-muted);
}

.bottom-bar_6PASi-nav a:hover {
    color: var(--theme-accent);
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badges img {
    height: 50px;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: all 300ms ease-in-out;
}

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

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

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

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

.responsible-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.responsible-logos a {
    display: block;
    transition: all 300ms ease-in-out;
}

.responsible-logos a:hover {
    transform: translate(0, -3px);
}

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

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

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

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

.bottom-bar_6PASi-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: 12px auto 0;
    opacity: 0.5;
    line-height: 1.6;
}

/* ===== Hamburger & Mobile ===== */

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--theme-accent);
    transition: all 300ms ease-in-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;
}


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

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

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

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

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

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

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

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


@media (max-width: 770px) {
    .nav-wrap_EQlxe {
        padding: 0px;
    }

    .nav-wrap_EQlxe .container_q8pkC {
        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-family-heading);
        font-size: 17px;
        font-weight: 700;
        color: var(--theme-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(160deg, var(--theme-primary), var(--theme-secondary));
        color: rgb(255, 255, 255);
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.5px;
        border-radius: var(--rounded-md);
        box-shadow: 0 4px 15px var(--theme-primary-alpha);
    }

    .nav-wrap_EQlxe-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .main-nav_BVZ2B.active {
        right: 0px;
    }

    .main-nav_BVZ2B a {
        font-size: 1.188rem;
        padding: 1rem 0px;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
    }

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

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

    .segment_cJb5S-title { font-size: 2rem; }
    .intro_TfZZV-content h1 { font-size: 2.5rem; }
    .intro_TfZZV { padding-top: 100px; }
}

@media (max-width: 30rem) {
    .container_q8pkC { padding: 0px 16px; }
    .segment_cJb5S { padding: 60px 0px; }
    .intro_TfZZV-ctas { flex-direction: column; }
    .intro_TfZZV-ctas .link-btn_nKEAA { width: 100%; }

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