

@import url("https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;500;700&display=swap");

:root {
    /* Colors */
    --muted: #a8a3c7;
    --darker: #080510;
    --light: #f5f3ff;
    --primary: #7c3aed;
    --primary-alpha: #7c3aed40;
    --secondary-alpha: #f59e0b40;
    --secondary: #f59e0b;
    --dark: #0f0a1e;
    --text: #e2e0ff;
    --accent: #fbbf24;

    /* Typography */
    --ff-heading: 'Anton', sans-serif;
    --ff-body: 'Roboto', sans-serif;

    /* Spacing */
    --gap: 20px;
    --element-spacing: 20px;
    --section-padding: 50px;

    /* Border Radius */
    --r-full: 4px;
    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 8px;

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

/* BASE */

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

.skip-to-main {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--r-md);
    z-index: 10000;
    transition: top .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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


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

@keyframes run-slideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}



html {
    scroll-behavior: smooth;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Container --- */

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

/* --- Header --- */

.masthead_wsPNG {
    position: fixed;
    top: 0;
    left: 0px;
    right: 0px;
    z-index: 1000;
    padding: 16px 0 16px 0px;
    background: rgb(0 0 0 / 85%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.masthead_wsPNG.scrolled {
    background: rgba(0,0,0,0.9);
    -webkit-backdrop-filter: blur(20px);
    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_wsPNG .box_sdGEj {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.masthead_wsPNG .logo {
    font-family: var(--ff-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: none;
    letter-spacing: 1.5px;
}

.main-nav_7POa1 {
    display: flex;
    gap: 32px;
}

.main-nav_7POa1 a {
    font-weight: 500;
    color: var(--text);
    opacity: 0.8;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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


/*! Buttons */

.link-btn_Qma11 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 12px;
    padding-inline: 28px;
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.5px;
}

.link-btn_Qma11--primary {
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: white;
}

.link-btn_Qma11--primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--elevated-shadow);
}

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

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

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

.link-btn_Qma11--small {
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    font-size: 14px;
}


/** Hero **/

.showcase_TmqtM {
    min-height: 100vh;
    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;
}

.showcase_TmqtM::before {
    content: '';
    position: absolute;
    inset: 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;
}

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

.showcase_TmqtM-content {
}

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

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

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

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

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

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

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

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

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

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


/*! Sections */

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

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

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



.tile_8UkPG {
    background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: var(--element-spacing);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.tile_8UkPG-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

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

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

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

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

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

.tile_8UkPG--game:hover img {
    transform: scale(1.1);
}

.tile_8UkPG-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.tile_8UkPG-name {
    font-weight: 600;
    color: rgb(255,255,255);
}

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

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

.tile_8UkPG--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    opacity: 0.4;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.tile_8UkPG--provider span {
    position: absolute;
    bottom: 0px;
    left: 0;
    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 .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

/* ==================== ABOUT / CONTENT LAYOUT ==================== */

.two-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.two-col-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
}

.two-col-row--swap {
    direction: rtl;
}

.two-col-row--swap > * {
    direction: ltr;
}

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

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

.two-col-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.two-col-img img {
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    object-fit: contain;
}

/*! CTA Blocks */

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

.area_HSyqt--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.25;
}

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

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

.area_HSyqt--cta .link-btn_Qma11 {
    position: relative;
    background: #fff;
    color: var(--primary);
}

.area_HSyqt--cta .link-btn_Qma11: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: 0px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--r-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(--accent);
    text-transform: uppercase;
    font-size: 0.813rem;
    letter-spacing: 0.8px;
}

.payments-table tbody tr {
    border: solid 0 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: background .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* -- SEO TEXT -- */

.section-content {
    margin-top: 48px;
    padding: 40px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--r-lg);
    border: solid 1px rgb(255 255 255 / 5%);
}

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

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

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

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

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

.seo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #fff;
}

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

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

/* --- FAQ --- */

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

.faq-item {
    border: solid rgba(255,255,255,0.08) 1px;
    border-radius: var(--r-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 .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/*
 * Info Table
 */

.info-table {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-collapse: separate;
    border-spacing: 0px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--r-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-top: 20px;
    padding-right: 24px;
    padding-bottom: 20px;
    padding-left: 24px;
    text-align: left;
}

.info-table th {
    width: 40%;
    font-weight: 600;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

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

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

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

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

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

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

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

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

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

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

.trust-seals img {
    height: 50px;
    filter: grayscale(100%) brightness(2) contrast(0.9);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-seals 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: 0.75rem;
    color: var(--muted);
}

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

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

.gaming-care a {
    display: block;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gaming-care img {
    height: 40px;
    filter: grayscale(100%) brightness(2) contrast(0.9);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gaming-care a:hover img {
    filter: brightness(1) contrast(1);
    opacity: 1;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 750px;
    margin: 12px auto 0;
    opacity: 0.5;
    line-height: 160%;
}


/* Hamburger & Mobile */

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

.mobile-nav-btn span {
    width: 26px;
    height: 3px;
    background: var(--accent);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    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: 63.9375rem) {
    .showcase_TmqtM .box_sdGEj {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .two-col-row { grid-template-columns: 1fr; }
    .two-col-row--swap { direction: ltr; }

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

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

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



@media (max-width: 48em) {
    .masthead_wsPNG {
        padding: 0px;
    }

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

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--ff-heading);
        font-size: 1.063rem;
        font-weight: 700;
        color: var(--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(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.5px;
        border-radius: var(--r-md);
        box-shadow: 0 4px 15px var(--primary-alpha);
    }

    .masthead_wsPNG-actions {
        display: none;
    }

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

    .main-nav_7POa1 {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 90%;
        max-width: 360px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right .3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
        border-left: 2px solid var(--primary);
        z-index: 1001;
        gap: 0;
    }

    .main-nav_7POa1.active {
        right: 0px;
    }

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

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

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

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

@media (max-width: 30em) {
    .box_sdGEj { padding: 0px 16px; }
    .area_HSyqt { padding: 60px 0px; }
    .showcase_TmqtM-ctas { flex-direction: column; }
    .showcase_TmqtM-ctas .link-btn_Qma11 { width: 100%; }

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