/* Auto-generated stylesheet | Electric Pink | Elegant Serif */

@import 'https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap';

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

    /* Typography */
    --font-family-heading: 'Playfair Display', sans-serif;
    --font-family-body: 'Source Sans Pro', sans-serif;

    /* Spacing */
    --section-space: 70px;
    --element-space: 30px;
    --item-gap: 25px;

    /* Border Radius */
    --rounded-md: 12px;
    --rounded-full: 8px;
    --rounded-lg: 16px;
    --rounded-sm: 8px;

    /* Shadows */
    --box-shadow-card: 0 2px 8px rgba(0,0,0,0.15);
    --box-shadow-elevated: 0 4px 16px rgba(0,0,0,0.2);
    --box-shadow-glow: 0 0 20px;
}

/*
 * Base
 */

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

.jump-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-block: 12px;
    padding-inline: 24px;
    background: var(--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(--accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--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-up {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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



html {
    scroll-behavior: smooth;
}

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

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

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

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

/** Container **/

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

/* -- HEADER -- */

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

.top-bar_UWgL7.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_UWgL7 .wrapper_oqQr2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

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

/* --- Buttons --- */

.btn_Tlpuy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--rounded-md);
    cursor: pointer;
    transition: all .25s ease-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn_Tlpuy--primary {
    background: var(--primary);
    border: none;
    box-shadow: 0 0 20px var(--primary-alpha);
    color: #fff;
}

.btn_Tlpuy--primary:hover {
    transform: translate(0, -3px);
    box-shadow: var(--box-shadow-elevated);
}

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

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

.btn_Tlpuy--large {
    padding: 18px 40px;
    font-size: 1.063rem;
}

.btn_Tlpuy--small {
    padding-block: 8px;
    padding-inline: 20px;
    font-size: 14px;
}

/*! Hero */

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

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

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

.hero_HpEvV-content {
    order: 2;
}

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

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

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

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

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

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

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

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

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

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

/** Sections **/

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

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

.zone_6SJMK-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin: 0 auto;
}


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

.tile_VsW6P:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-elevated);
    border-color: var(--primary);
}

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

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

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

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

.tile_VsW6P--bonus p {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 170%;
}

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

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

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

.tile_VsW6P--game:hover img {
    transform: scale(1.07);
}

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

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

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

.tile_VsW6P-name {
    font-weight: 600;
    color: #ffffff;
}

.listing_p6Di2--providers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--item-gap);
}

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

.tile_VsW6P--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    opacity: 0.4;
    transition: all .25s ease-out;
}

.tile_VsW6P--provider:hover img {
    filter: none;
    transform: scale(1.07);
}

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

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

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

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

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

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

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

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

.tile_VsW6P--review p {
    color: var(--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: 32px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

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

/** CTA Blocks **/

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

.zone_6SJMK--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

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

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

.zone_6SJMK--cta .btn_Tlpuy {
    position: relative;
    background: #fff;
    color: var(--primary);
}

.zone_6SJMK--cta .btn_Tlpuy:hover {
    background: var(--dark);
    color: #fff;
}

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

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

.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255,255,255,0.02);
    border-radius: var(--rounded-lg);
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding-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(--accent);
    text-transform: uppercase;
    font-size: 0.813rem;
    letter-spacing: 0.3px;
}

.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: 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: 4px 12px;
    background: var(--primary-alpha);
    border-radius: var(--rounded-full);
    font-size: 0.813rem;
    color: var(--accent);
}


.text-section {
    margin-top: 48px;
    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) solid 1px;
}

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

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

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

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

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

.seo-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #FFF;
}

.seo-content h3 {
    font-size: 28px;
    margin: 32px 0 16px;
    color: var(--accent);
}

.seo-content p {
    color: var(--muted);
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

/* -- FAQ -- */

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

.faq-item {
    border: solid 1px rgb(255 255 255 / 8%);
    border-radius: var(--rounded-md);
    margin-bottom: 0.75rem;
    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: #fff;
    text-align: left;
    transition: color .25s ease-out;
}

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

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

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

.faq-answer {
    max-height: 0px;
    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(--muted);
    line-height: 1.8;
}

/*
 * 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: 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-block: 20px;
    padding-inline: 24px;
    text-align: left;
}

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

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


.bottom-bar_A6Nwq {
    background: var(--darker);
    padding: 80px 0px 0 0;
    border: 1px 0 0 0 solid rgba(255,255,255,0.05);
}

.bottom-bar_A6Nwq-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 3.75rem;
    margin-bottom: 60px;
}

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

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

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

.bottom-bar_A6Nwq-nav a {
    color: var(--muted);
}

.bottom-bar_A6Nwq-nav a:hover {
    color: var(--accent);
}

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

.trust-badges img {
    height: 50px;
    filter: brightness(0.6) contrast(0.8);
    transition: all .25s ease-out;
}

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

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

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

.responsible-text {
    font-size: 14px;
    color: var(--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 .25s ease-out;
}

.resp-logos a:hover {
    transform: translateY(-4px);
}

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

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

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

.bottom-bar_A6Nwq-bottom p {
    font-size: 14px;
    color: var(--muted);
    opacity: 0.7;
    margin-bottom: 8px;
}

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

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

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

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

.burger span {
    width: 28px;
    height: 3px;
    background: var(--accent);
    transition: all .25s ease-out;
    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: 64em) {
    .hero_HpEvV .wrapper_oqQr2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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

/* Responsive - Mobile */

@media (max-width: 48rem) {
    .top-bar_UWgL7 {
        padding: 0;
    }

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

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--font-family-heading);
        font-size: 17px;
        font-weight: 700;
        color: var(--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(135deg, var(--primary), var(--secondary));
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.3px;
        border-radius: var(--rounded-md);
        box-shadow: 0 4px 15px var(--primary-alpha);
    }

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

    .burger {
        display: flex;
    }

    .nav_Xup4e {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 85%;
        max-width: 420px;
        height: 100vh;
        background: var(--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(--primary);
        z-index: 1001;
        gap: 0px;
    }

    .nav_Xup4e.active {
        right: 0px;
    }

    .nav_Xup4e a {
        font-size: 1.188rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
    }

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

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

@media (max-width: 479px) {
    .wrapper_oqQr2 { padding: 0 16px; }
    .zone_6SJMK { padding: 60px 0; }
    .hero_HpEvV-ctas { flex-direction: column; }
    .hero_HpEvV-ctas .btn_Tlpuy { width: 100%; }

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