/*!
 * Stylesheet: Neon Green
 * Fonts: Oswald / Nunito
 * Date: 2026-08-13T08:04:05.007Z
 */

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

:root {
    --c-accent: #86efac;
    --c-primary: #22c55e;
    --c-primary-alpha: #22c55e40;
    --c-light: #f0fdf4;
    --c-secondary-alpha: #4ade8040;
    --c-darker: #021a0d;
    --c-secondary: #4ade80;
    --c-dark: #052e16;
    --c-muted: #86efac;
    --c-text: #dcfce7;

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

    --pad-element: 16px;
    --grid-gap: 12px;
    --pad-section: 40px;
    --border-radius-md: 12px;
    --border-radius-full: 8px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --glow-shadow: 0 0 30px;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.25);
    --elevated-shadow: 0 8px 30px rgba(0,0,0,0.35);
}


/*
 * Base
 */

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


.bypass-block {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    background: var(--c-primary);
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    z-index: 10000;
    transition: top .25s ease-in;
}

.bypass-block: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-fx {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    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(--c-darker);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all .25s ease-in;
}




.box_FfqI3 {
    max-width: 1320px;
    margin: 0px auto;
    padding: 0 24px;
}



/** Header **/

.site-header_YXccj {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-block: 16px;
    padding-inline: 0px;
    background: rgb(0 0 0 / 85%);
    backdrop-filter: blur(12px);
    transition: all .25s ease-in;
}

.site-header_YXccj.scrolled {
    background: rgb(0 0 0 / 90%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding-top: 12px;
    padding-right: 0px;
    padding-bottom: 12px;
    padding-left: 0px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.site-header_YXccj .box_FfqI3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-links_wkSfT {
    display: flex;
    gap: 2rem;
}

.nav-links_wkSfT a {
    font-weight: 500;
    color: var(--c-text);
    opacity: 0.8;
    transition: all .25s ease-in;
}

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

.site-header_YXccj-actions {
    display: flex;
    gap: 12px;
}



/* -- BUTTONS -- */

.button_MuQTA {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 12px;
    padding-inline: 28px;
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all .25s ease-in;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.button_MuQTA--primary {
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-secondary) 100%);
    border: none;
    color: rgb(255,255,255);
}

.button_MuQTA--primary:hover {
    transform: scale(1.02);
    box-shadow: var(--elevated-shadow);
}

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

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

.button_MuQTA--large {
    padding-top: 18px;
    padding-right: 40px;
    padding-bottom: 18px;
    padding-left: 40px;
    font-size: 17px;
}

.button_MuQTA--small {
    padding-block: 8px;
    padding-inline: 20px;
    font-size: 0.875rem;
}



/* --- Hero --- */

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

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

.intro_s6Msd .box_FfqI3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro_s6Msd-content {
}

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

.intro_s6Msd-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.25rem;
    color: #FFF;
    text-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.intro_s6Msd-subtitle {
    font-size: 20px;
    color: var(--c-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.intro_s6Msd-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

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

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

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

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

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



/* ==================== SECTIONS ==================== */

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

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

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



.panel_4FHo8 {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgb(255 255 255 / 2%) 100%);
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: var(--border-radius-lg);
    padding: var(--pad-element);
    transition: all .25s ease-in;
}

.panel_4FHo8:hover {
    transform: translate(0, -6px);
    box-shadow: var(--elevated-shadow);
    border-color: var(--c-primary);
}

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

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

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

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

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

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

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

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

.panel_4FHo8--game:hover img {
    transform: scale(1.05);
}

.panel_4FHo8-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .25s ease-in;
}

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

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

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

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

.panel_4FHo8--provider {
    display: flex;
    place-content: center;
    place-items: center;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 2.5 / 1;
    position: relative;
}

.panel_4FHo8--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: brightness(0.6) contrast(0.8);
    transition: all .25s ease-in;
}

.panel_4FHo8--provider:hover img {
    filter: brightness(1) contrast(1);
    transform: scale(1.07);
}

.panel_4FHo8--provider span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0px;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--c-muted);
    text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity .25s ease-in;
}

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

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

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

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

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

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

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

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


/*
 * About / Content Layout
 */

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

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

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

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

.detail-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--c-accent);
}

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

.detail-image {
    display: flex;
    place-content: center;
    place-items: center;
}

.detail-image img {
    width: 100%;
    max-width: 380px;
    max-height: 340px;
    object-fit: contain;
}


/* CTA BLOCKS */

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

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

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

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

.block_fQCnk--cta .button_MuQTA {
    position: relative;
    background: rgb(255,255,255);
    color: var(--c-primary);
}

.block_fQCnk--cta .button_MuQTA:hover {
    background: var(--c-dark);
    color: white;
}


/* 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-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(--c-accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

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

.payments-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

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

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


/*
 * SEO Text
 */

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

.seo-block h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--c-accent);
}

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

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

.block_fQCnk--seo-text {
    background: var(--c-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(--c-accent);
}

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


/* -- FAQ -- */

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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255 255 255 / 8%);
    border-radius: var(--border-radius-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 .25s ease-in;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--c-primary);
    transition: transform .25s ease-in;
}

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

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

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

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


/** Info Table **/

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

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

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

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


/* ==================== FOOTER ==================== */

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

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

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

.site-footer_e3BGZ-col p {
    color: var(--c-muted);
    line-height: 1.8em;
}

.site-footer_e3BGZ-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer_e3BGZ-nav a {
    color: var(--c-muted);
}

.site-footer_e3BGZ-nav a:hover {
    color: var(--c-accent);
}

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

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

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

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

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

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

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

.responsible-logos a {
    display: block;
    transition: all .25s ease-in;
}

.responsible-logos a:hover {
    transform: translateY(-3px);
}

.responsible-logos img {
    height: 40px;
    filter: grayscale(100%) brightness(2);
    transition: all .25s ease-in;
}

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

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

.site-footer_e3BGZ-bottom p {
    font-size: 0.875rem;
    color: var(--c-muted);
    opacity: 0.7;
    margin-bottom: 8px;
}

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

.footer-update {
    margin-top: 1rem;
    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 --- */

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

.burger span {
    width: 26px;
    height: 3px;
    background: var(--c-accent);
    transition: all .25s ease-in;
    border-radius: 2px;
}

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

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

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

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


/*
 * Responsive - Tablet
 */

@media (max-width: 1024px) {
    .intro_s6Msd .box_FfqI3 {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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


/* Responsive - Mobile */

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

    .site-header_YXccj .box_FfqI3 {
        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: 1.063rem;
        font-weight: 700;
        color: var(--c-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(145deg, var(--c-primary), var(--c-secondary));
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.05em;
        border-radius: var(--border-radius-md);
        box-shadow: 0 4px 15px var(--c-primary-alpha);
    }

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

    .burger {
        display: flex;
    }

    .nav-links_wkSfT {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 420px;
        height: 100vh;
        background: var(--c-darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right .25s ease-in;
        box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
        border-left: 2px solid var(--c-primary);
        z-index: 1001;
        gap: 0px;
    }

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

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

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

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

@media (max-width: 480px) {
    .box_FfqI3 { padding: 0px 16px; }
    .block_fQCnk { padding: 60px 0; }
    .intro_s6Msd-ctas { flex-direction: column; }
    .intro_s6Msd-ctas .button_MuQTA { width: 100%; }

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