/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Arctic Blue
 * Typography: Bold Impact
 * Generated: 2026-08-23T11:51:39.387Z
 */

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

:root {
    /* Colors */
    --c-primary: #3b82f6;
    --c-secondary: #60a5fa;
    --c-darker: #060d14;
    --c-secondary-alpha: #60a5fa40;
    --c-light: #eff6ff;
    --c-dark: #0c1929;
    --c-text: #dbeafe;
    --c-primary-alpha: #3b82f640;
    --c-muted: #93c5fd;
    --c-accent: #93c5fd;

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

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

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

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


/* Base */

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

.acc-skip {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-block: 12px;
    padding-inline: 24px;
    background: var(--c-primary);
    color: rgb(255,255,255);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rad-md);
    z-index: 10000;
    transition: top 250ms ease;
}

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



@keyframes fadeIn-fx {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

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

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


html {
    scroll-behavior: smooth;
}

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

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

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

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


/* CONTAINER */

.content-wrap_nBjPz {
    max-width: 80rem;
    margin: 0px auto;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
}


/** Header **/

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

.masthead_UC232.scrolled {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    padding-top: 12px;
    padding-right: 0;
    padding-bottom: 12px;
    padding-left: 0px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.masthead_UC232 .content-wrap_nBjPz {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.masthead_UC232 .logo {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav_QX7FB a {
    font-weight: 500;
    color: var(--c-text);
    opacity: 0.8;
    transition: all 250ms ease;
}

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

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

/*
 * Buttons
 */

.cta_wM1lQ {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 12px;
    padding-inline: 28px;
    font-family: var(--body-font);
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--rad-md);
    cursor: pointer;
    transition: all 250ms ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta_wM1lQ--primary {
    background: var(--c-primary);
    border: none;
    color: #ffffff;
}

.cta_wM1lQ--primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

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

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

.cta_wM1lQ--small {
    padding: 8px 20px;
    font-size: 14px;
}

/*! Hero */

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

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

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

.splash_4s13x-content {
    order: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.block_MImax-subtitle {
    text-align: center;
    font-size: 1.063rem;
    color: var(--c-muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin-inline: auto;
}

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

.box_YcGOP {
    background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: solid rgb(255 255 255 / 8%) 1px;
    border-radius: var(--rad-lg);
    padding: var(--element-spacing);
    transition: all 250ms ease;
}

.box_YcGOP:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-primary);
}

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

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

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

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

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

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

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

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

.box_YcGOP--game:hover img {
    transform: scale(1.06);
}

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

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

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

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

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

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

.box_YcGOP--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: brightness(0.6) contrast(0.8);
    transition: all 250ms ease;
}

.box_YcGOP--provider:hover img {
    filter: none;
    transform: scale(1.03) rotate(1deg);
}

.box_YcGOP--provider span {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 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 250ms ease;
}

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

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

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

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

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

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

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

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


/*
 * About / Content Layout
 */

.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: 1.25rem;
    color: var(--c-accent);
}

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

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

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

/** CTA Blocks **/

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

.block_MImax--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0.3;
}

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

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

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

.block_MImax--cta .cta_wM1lQ:hover {
    background: var(--c-dark);
    color: rgb(255, 255, 255);
}


/* -- PAYMENTS TABLE -- */

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

.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rad-lg);
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding: 20px 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: capitalize;
    font-size: 13px;
    letter-spacing: 0.03em;
}

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

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

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


/*
 * SEO Text
 */

.text-block {
    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(--rad-lg);
    border: 1px solid rgb(255 255 255 / 5%);
}

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

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

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

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

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

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

.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: 820px;
    margin-inline: auto;
}

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255 255 255 / 8%);
    border-radius: var(--rad-md);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    padding: 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 250ms ease;
}

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

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

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

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

.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(--c-muted);
    line-height: 180%;
}

/* Info Table */

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

.info-table tr {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: 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(--c-accent);
    background: rgba(255, 255, 255, 0.02);
}

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

/* Footer */

.colophon_mRc0B {
    background: var(--c-darker);
    padding: 80px 0 0px 0px;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.05);
}

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

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

.colophon_mRc0B-col p {
    color: var(--c-muted);
    line-height: 180%;
}

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

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

.colophon_mRc0B-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 250ms ease;
}

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

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

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

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

.resp-logos a {
    display: block;
    transition: all 250ms ease;
}

.resp-logos a:hover {
    transform: scale(1.02);
}

.resp-logos img {
    height: 40px;
    opacity: 0.4;
    transition: all 250ms ease;
}

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

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

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

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

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

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

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


.mobile-nav-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;
}

.mobile-nav-btn span {
    width: 26px;
    height: 3px;
    background: var(--c-accent);
    transition: all 250ms ease;
    border-radius: 2px;
}

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

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

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

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

/* Responsive - Tablet */

@media (max-width: 1020px) {
    .splash_4s13x .content-wrap_nBjPz {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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

/*! Responsive - Mobile */

@media (max-width: 768px) {
    .masthead_UC232 {
        padding: 0px;
    }

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

    .logo {
        display: none;
    }

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

    .masthead_UC232-actions {
        display: none;
    }

    .mobile-nav-btn {
        display: flex;
    }

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

    .nav_QX7FB.active {
        right: 0;
    }

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

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

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

@media (max-width: 30rem) {
    .content-wrap_nBjPz { padding: 0 16px; }
    .block_MImax { padding: 60px 0; }
    .splash_4s13x-ctas { flex-direction: column; }
    .splash_4s13x-ctas .cta_wM1lQ { width: 100%; }

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