/* Casino Landing Page Styles - Sunset Orange + Futuristic */

@import "https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Titillium+Web:wght@400;600&display=swap";

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

    --body-font: 'Titillium Web', sans-serif;
    --heading-font: 'Orbitron', sans-serif;

    --gap: 25px;
    --element-spacing: 30px;
    --section-padding: 70px;
    --rounded-full: 4px;
    --rounded-lg: 8px;
    --rounded-sm: 4px;
    --rounded-md: 6px;
    --shadow-card: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-elevated: 0 8px 30px rgba(0,0,0,0.35);
    --shadow-glow: 0 0 30px;
}

/* --- Base --- */

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

.jump-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--c-primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rounded-md);
    z-index: 10000;
    transition: top .25s ease-out;
}

.jump-link: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-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes shimmer {
    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.6em;
    overflow-x: hidden;
}

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

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

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


.box_uqJS0 {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

/* Header */

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

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

.header_St1M8 .box_uqJS0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.navigation_pyFcC {
    display: flex;
    gap: 2rem;
}

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

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

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

/* Buttons */

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

.cta_g7bWM--primary {
    background: transparent;
    border: 2px solid var(--c-primary);
    color: var(--c-primary);
}

.cta_g7bWM--primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--shadow-elevated);
    background: var(--c-primary);
    color: white;
}

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

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

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

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

/* Hero */

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

.splash_c5HF3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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_c5HF3 .box_uqJS0 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.splash_c5HF3-content {
}

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

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

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

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

.splash_c5HF3-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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


/* --- Sections --- */

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

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

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

/* -- CARDS -- */

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

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

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

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

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

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

.panel_4o3cl--bonus p {
    color: var(--c-muted);
    margin-bottom: 1.5rem;
    line-height: 170%;
}

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

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

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

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

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

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

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

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

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

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

.panel_4o3cl--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all .25s ease-out;
}

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

.panel_4o3cl--provider span {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    font-size: 12px;
    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-out;
}

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

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

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

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

.reviewer-avatar {
    width: 50px;
    height: 48px;
    border-radius: 40%;
    background: linear-gradient(120deg, 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_4o3cl--review p {
    color: var(--c-muted);
    font-style: italic;
    line-height: 1.7;
}

/** About / Content Layout **/

.detail-blocks {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    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;
    align-items: center;
    justify-content: center;
}

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

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

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

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

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

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

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

.block_AmaU5--cta .cta_g7bWM: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: rgb(255 255 255 / 2%);
    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(--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-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(--c-primary-alpha);
    border-radius: var(--rounded-full);
    font-size: 0.813rem;
    color: var(--c-accent);
}

/* ===== SEO Text ===== */

.seo-content {
    margin-top: 3rem;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rounded-lg);
    border: rgba(255,255,255,0.05) 1px solid;
}

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

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

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

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

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

.seo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: rgb(255,255,255);
}

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

/* --- FAQ --- */

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

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

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

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

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

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

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

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

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


.info-table {
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
    border-collapse: separate;
    border-spacing: 0;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rounded-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_hbK1Y {
    background: var(--c-darker);
    padding-top: 80px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0px;
    border: 1px 0 0 0 solid rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

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

.badge-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-strip img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all .25s ease-out;
}

.badge-strip img:hover {
    filter: none;
    opacity: 1;
}

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

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

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

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

.gaming-care a {
    display: block;
    transition: all .25s ease-out;
}

.gaming-care a:hover {
    transform: translateY(-5px);
}

.gaming-care img {
    height: 40px;
    filter: brightness(0.6) contrast(0.8);
    transition: all .25s ease-out;
}

.gaming-care a:hover img {
    filter: none;
    opacity: 1;
}

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

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

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

.footer-update {
    margin-top: 1rem;
    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.6em;
}


/* 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: 30px;
    height: 2px;
    background: var(--c-accent);
    transition: all .25s ease-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;
}

/*! Responsive - Tablet */

@media (max-width: 63.9375rem) {
    .splash_c5HF3 .box_uqJS0 {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

    .site-footer_hbK1Y-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

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

    .badge-strip { justify-content: center; }
}


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

@media (max-width: 47.9375em) {
    .header_St1M8 {
        padding: 0;
    }

    .header_St1M8 .box_uqJS0 {
        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: uppercase;
        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: rgb(255, 255, 255);
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0.8px;
        border-radius: var(--rounded-md);
        box-shadow: 0 4px 15px var(--c-primary-alpha);
    }

    .header_St1M8-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .navigation_pyFcC.active {
        right: 0px;
    }

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

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

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

@media (max-width: 481px) {
    .box_uqJS0 { padding: 0 16px; }
    .block_AmaU5 { padding: 60px 0; }
    .splash_c5HF3-ctas { flex-direction: column; }
    .splash_c5HF3-ctas .cta_g7bWM { width: 100%; }

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