/*
 * Theme: Electric Pink
 * Typography: Modern Sharp
 */

@import "https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap";

:root {
    /* Colors */
    --c-muted: #f9a8d4;
    --c-dark: #1a0a14;
    --c-text: #fce7f3;
    --c-secondary: #f472b6;
    --c-primary: #ec4899;
    --c-darker: #0d0509;
    --c-primary-alpha: #ec489940;
    --c-accent: #f9a8d4;
    --c-secondary-alpha: #f472b640;
    --c-light: #fdf2f8;

    /* Typography */
    --typo-heading: 'Bebas Neue', sans-serif;
    --typo-body: 'Inter', sans-serif;

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

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

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
    --shadow-lg: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px;
}



*, *::before, *::after {
    margin: 0;
    padding: 0px;
    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: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rounded-md);
    z-index: 10000;
    transition: top 0.35s ease;
}

.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 run-fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

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



html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--typo-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(--typo-heading);
    font-weight: 800;
    line-height: 1.2em;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
}

/* --- Container --- */

.box_KAX9i {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-block: 0;
    padding-inline: 24px;
}

/** Header **/

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

.top-bar_xbijK.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);
}

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

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

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

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

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

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

/* ==================== BUTTONS ==================== */

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

.action_rQ6PO--primary {
    background: linear-gradient(to right, var(--c-primary) 0%, var(--c-secondary) 100%);
    border: none;
    color: #fff;
}

.action_rQ6PO--primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

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

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

.action_rQ6PO--large {
    padding: 18px 40px;
    font-size: 17px;
}

.action_rQ6PO--small {
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    font-size: 0.875rem;
}

/* HERO */

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

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

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

.showcase_ba7yA-content {
    order: 2;
}

.showcase_ba7yA-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(--rounded-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-accent);
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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


/*
 * Sections
 */

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

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

.zone_3HA3G-subtitle {
    text-align: center;
    font-size: 1.063rem;
    color: var(--c-muted);
    margin-bottom: 3rem;
    max-width: 640px;
    margin: 0 auto;
}

/* --- Cards --- */

.item_NIqWm {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--rounded-lg);
    padding: var(--element-spacing);
    transition: all 0.35s ease;
}

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

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

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

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

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

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

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

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

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

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

.item_NIqWm-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

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

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

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

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

.item_NIqWm--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: saturate(0) brightness(1.8);
    transition: all 0.35s ease;
}

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

.item_NIqWm--provider span {
    position: absolute;
    bottom: 0;
    left: 0;
    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 0.35s ease;
}

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

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

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

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

.reviewer-avatar {
    width: 48px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(to bottom, var(--c-primary), var(--c-secondary));
    display: flex;
    place-content: center;
    place-items: center;
    font-weight: 700;
    color: #FFFFFF;
}

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

.stars {
    color: var(--c-accent);
    font-size: 0.875rem;
}

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


/** About / Content Layout **/

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

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

.feature-block--alt {
    direction: rtl;
}

.feature-block--alt > * {
    direction: ltr;
}

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

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

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-visual img {
    width: 100%;
    max-width: 400px;
    max-height: 320px;
    object-fit: contain;
}

/* ===== CTA Blocks ===== */

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

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

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

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

.zone_3HA3G--cta .action_rQ6PO {
    position: relative;
    background: #fff;
    color: var(--c-primary);
}

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



.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(--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: 0.813rem;
    letter-spacing: 0.3px;
}

.payments-table tbody tr {
    border: rgba(255,255,255,0.05) solid 0 0 1px 0;
    transition: background 0.35s 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-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-text {
    margin-top: 3rem;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--rounded-lg);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

.seo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    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: 190%;
}


/*
 * FAQ
 */

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

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

.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 0.35s ease;
}

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s 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: 1.8em;
}

/** Info Table **/

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

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

.info-table tr:last-child {
    border-bottom: none;
}

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

.info-table th {
    width: 40%;
    font-weight: 600;
    color: var(--c-accent);
    background: rgb(255 255 255 / 2%);
}

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


/* ===== Footer ===== */

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

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

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

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

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

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

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

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

.trust-badges img {
    height: 50px;
    filter: saturate(0) brightness(1.8);
    transition: all 0.35s ease;
}

.trust-badges img:hover {
    filter: none;
    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: 16px;
    margin-bottom: 0.75rem;
    color: var(--c-muted);
}

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

.safe-play {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.safe-play a {
    display: block;
    transition: all 0.35s ease;
}

.safe-play a:hover {
    transform: scale(1.02);
}

.safe-play img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.35s ease;
}

.safe-play a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.colophon_77tzL-bottom {
    padding-block: 24px;
    padding-inline: 0;
    text-align: center;
}

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

.colophon_77tzL-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: 1.6em;
}



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

.burger span {
    width: 30px;
    height: 2px;
    background: var(--c-accent);
    transition: all 0.35s ease;
    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: 1020px) {
    .showcase_ba7yA .box_KAX9i {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .feature-block { grid-template-columns: 1fr; }
    .feature-block--alt { direction: ltr; }

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

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

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


/*
 * Responsive - Mobile
 */

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

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

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--typo-heading);
        font-size: 17px;
        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(125deg, 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(--rounded-md);
        box-shadow: 0 4px 15px var(--c-primary-alpha);
    }

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

    .burger {
        display: flex;
    }

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

    .menu_S6JWx.active {
        right: 0px;
    }

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

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

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

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

@media (max-width: 30em) {
    .box_KAX9i { padding: 0px 16px; }
    .zone_3HA3G { padding: 60px 0; }
    .showcase_ba7yA-ctas { flex-direction: column; }
    .showcase_ba7yA-ctas .action_rQ6PO { width: 100%; }

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