/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Midnight Gold
 * Typography: Industrial
 * Generated: 2026-08-29T08:14:17.842Z
 */

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

:root {
    /* Colors */
    --theme-dark: #1a1505;
    --theme-primary: #ca8a04;
    --theme-primary-alpha: #ca8a0440;
    --theme-muted: #facc15;
    --theme-secondary-alpha: #eab30840;
    --theme-light: #fefce8;
    --theme-secondary: #eab308;
    --theme-darker: #0d0b02;
    --theme-accent: #fde047;
    --theme-text: #fef08a;

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

    /* Spacing */
    --pad-element: 30px;
    --pad-section: 70px;
    --grid-gap: 25px;

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

    /* Shadows */
    --sh-card: 0 8px 40px rgba(0,0,0,0.4);
    --sh-glow: 0 0 50px;
    --sh-elevated: 0 15px 50px rgba(0,0,0,0.5);
}


/* Base */

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

.bypass-block {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--theme-primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rounded-md);
    z-index: 10000;
    transition: top 350ms ease-in;
}

.bypass-block: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 play-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


html {
    scroll-behavior: smooth;
}

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

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

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

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


/* CONTAINER */

.content-wrap_E4JJZ {
    max-width: 1320px;
    margin: 0 auto;
    padding-block: 0;
    padding-inline: 24px;
}

/* ==================== HEADER ==================== */

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

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

.top-bar_MQL2i .content-wrap_E4JJZ {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.nav-links_8TQHG a {
    font-weight: 500;
    color: var(--theme-text);
    opacity: 0.8;
    transition: all 350ms ease-in;
}

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

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

/*
 * Buttons
 */

.btn_yJsTs {
    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 350ms ease-in;
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

.btn_yJsTs--primary {
    background: linear-gradient(120deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
    border: none;
    color: white;
}

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

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

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

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

.btn_yJsTs--small {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* -- HERO -- */

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

.splash_jSE18::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;
}

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

.splash_jSE18-content {
}

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

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

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

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

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

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

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

.splash_jSE18-feature span {
    font-size: 1.188rem;
}

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

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

/* ===== Sections ===== */

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

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

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


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

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

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

.panel_pXQXx--bonus {
    text-align: center;
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-left: 30px;
}

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

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

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

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

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

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

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

.panel_pXQXx-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 80%);
    display: flex;
    place-content: center;
    place-items: center;
    opacity: 0;
    transition: opacity 350ms ease-in;
}

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

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

.panel_pXQXx-name {
    font-weight: 600;
    color: #fff;
}

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

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

.panel_pXQXx--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(80%) brightness(1.5);
    transition: all 350ms ease-in;
}

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

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

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

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

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

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

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

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

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

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


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

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

.alt-row--flip {
    direction: rtl;
}

.alt-row--flip > * {
    direction: ltr;
}

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

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

.alt-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.alt-media img {
    width: 100%;
    max-width: 380px;
    max-height: 300px;
    object-fit: contain;
}



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

.block_vGWP3--cta::before {
    content: '';
    position: absolute;
    inset: 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.2;
}

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

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

.block_vGWP3--cta .btn_yJsTs {
    position: relative;
    background: #ffffff;
    color: var(--theme-primary);
}

.block_vGWP3--cta .btn_yJsTs:hover {
    background: var(--theme-dark);
    color: rgb(255, 255, 255);
}

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

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

.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--rounded-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(--theme-accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.8px;
}

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

.payments-table tbody tr:hover {
    background: rgb(255 255 255 / 3%);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method img {
    height: 32px;
    width: auto;
}

.time-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--theme-primary-alpha);
    border-radius: var(--rounded-full);
    font-size: 13px;
    color: var(--theme-accent);
}



.text-content {
    margin-top: 3rem;
    padding: 40px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rounded-lg);
    border: rgb(255 255 255 / 5%) 1px solid;
}

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

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

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

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

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

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

.seo-content h3 {
    font-size: 1.75rem;
    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: 1.25rem;
    line-height: 190%;
}


/* --- FAQ --- */

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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255 255 255 / 8%);
    border-radius: var(--rounded-md);
    margin-bottom: 12px;
    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: 17px;
    font-weight: 600;
    color: rgb(255,255,255);
    text-align: left;
    transition: color 350ms ease-in;
}

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

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

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

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

.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(--theme-muted);
    line-height: 1.8;
}


.info-table {
    width: 100%;
    max-width: 750px;
    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: solid 0 0 1px 0 rgba(255,255,255,0.05);
}

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

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

/* Footer */

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

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

.end-section_y4BVW-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--theme-accent);
}

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

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

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

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

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

.trust-badges img {
    height: 50px;
    filter: grayscale(100%) brightness(2) contrast(0.9);
    transition: all 350ms ease-in;
}

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

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

.responsible-gaming h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--theme-muted);
}

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

.responsible-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

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

.responsible-logos img {
    height: 40px;
    opacity: 0.4;
    transition: all 350ms ease-in;
}

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

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

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

.end-section_y4BVW-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-top: 12px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    opacity: 0.5;
    line-height: 160%;
}

/* --- Hamburger & Mobile --- */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.38rem;
    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;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--theme-accent);
    transition: all 350ms ease-in;
    border-radius: 2px;
}

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

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

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

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


/* ===== Responsive - Tablet ===== */

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

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

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

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

    .alt-row { grid-template-columns: 1fr; }
    .alt-row--flip { direction: ltr; }

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

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

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

/* --- Responsive - Mobile --- */

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

    .top-bar_MQL2i .content-wrap_E4JJZ {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        gap: 0.75rem;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--font-family-heading);
        font-size: 17px;
        font-weight: 700;
        color: var(--theme-accent);
        text-transform: none;
        text-decoration: none;
        white-space: nowrap;
    }

    .mobile-cta {
        display: block;
        flex: 1;
        max-width: 180px;
        padding: 10px 16px;
        background: linear-gradient(120deg, var(--theme-primary), var(--theme-secondary));
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0.03em;
        border-radius: var(--rounded-md);
        box-shadow: 0 4px 15px var(--theme-primary-alpha);
    }

    .top-bar_MQL2i-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links_8TQHG {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 420px;
        height: 100vh;
        background: var(--theme-darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 350ms ease-in;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.7);
        border-left: 2px solid var(--theme-primary);
        z-index: 1001;
        gap: 0;
    }

    .nav-links_8TQHG.active {
        right: 0px;
    }

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

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

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

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

@media (max-width: 29.9375rem) {
    .content-wrap_E4JJZ { padding: 0px 16px; }
    .block_vGWP3 { padding: 60px 0; }
    .splash_jSE18-ctas { flex-direction: column; }
    .splash_jSE18-ctas .btn_yJsTs { width: 100%; }

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