/*
 * Theme: Royal Purple & Gold
 * Typography: Industrial
 */

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

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

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

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

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

    /* Shadows */
    --box-shadow-card: 0 4px 20px rgba(0,0,0,0.25);
    --box-shadow-glow: 0 0 30px;
    --box-shadow-elevated: 0 8px 30px rgba(0,0,0,0.35);
}


/* ===== Base ===== */

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


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

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




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

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

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



html {
    scroll-behavior: smooth;
}

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

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

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

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




.content-wrap_WQHdl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* --- Header --- */

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

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

.nav-wrap_rAESQ .content-wrap_WQHdl {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wrap_rAESQ .logo {
    font-family: var(--font-family-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--c-accent);
    text-transform: none;
    letter-spacing: 0.08em;
}

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

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

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

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



/* ===== Buttons ===== */

.button_bqBoX {
    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: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.35s ease-out;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

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

.button_bqBoX--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--box-shadow-elevated);
    background: var(--c-primary);
    color: #ffffff;
}

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

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

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

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



/*! Hero */

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

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

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

.hero_DdkB2-content {
    order: 2;
}

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

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

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

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

.hero_DdkB2-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

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

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

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

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

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




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

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

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



/* --- Cards --- */

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

.card_hWdQi:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-elevated);
    border-color: var(--c-primary);
}

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

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

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

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

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

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

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

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

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

.card_hWdQi-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease-out;
}

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

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

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

.layout_wl16l--providers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-gap);
}

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

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

.card_hWdQi--provider:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.07);
}

.card_hWdQi--provider span {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0;
    padding: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--c-muted);
    text-align: center;
    background: linear-gradient(transparent, rgb(0 0 0 / 60%));
    opacity: 0;
    transition: opacity 0.35s ease-out;
}

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

.layout_wl16l--reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-gap);
}

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

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

.reviewer-avatar {
    width: 50px;
    height: 52px;
    border-radius: 40%;
    background: linear-gradient(125deg, 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: white;
}

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

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


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

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

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

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

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

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

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

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

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


/* CTA BLOCKS */

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

.area_NPum0--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    opacity: 0.3;
}

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

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

.area_NPum0--cta .button_bqBoX {
    position: relative;
    background: #ffffff;
    color: var(--c-primary);
}

.area_NPum0--cta .button_bqBoX:hover {
    background: var(--c-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(--radius-lg);
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding: 20px 24px;
    text-align: left;
}

.payments-table thead {
    background: rgba(255,255,255,0.05);
}

.payments-table th {
    font-weight: 600;
    color: var(--c-accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.3px;
}

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

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

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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



/* --- SEO Text --- */

.info-text {
    margin-top: 48px;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    border: solid 1px rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

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

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

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


/* ==================== FAQ ==================== */

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

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

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

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

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

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

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

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


/* ===== Info Table ===== */

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

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

.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 ==================== */

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

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

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

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

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

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

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

.trust-seals {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-seals img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.35s ease-out;
}

.trust-seals img:hover {
    filter: brightness(1) contrast(1);
    opacity: 1;
}

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

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

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

.gaming-care a:hover {
    transform: translate(0, -3px);
}

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

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

.end-section_8Nkp5-bottom {
    padding-top: 24px;
    padding-right: 0;
    padding-bottom: 24px;
    padding-left: 0;
    text-align: center;
}

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

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

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



/*! Hamburger & Mobile */

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

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--c-accent);
    transition: all 0.35s ease-out;
    border-radius: 2px;
}

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

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

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

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



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

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

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

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

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

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

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

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


/*! Responsive - Mobile */

@media (max-width: 48rem) {
    .nav-wrap_rAESQ {
        padding: 0px;
    }

    .nav-wrap_rAESQ .content-wrap_WQHdl {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        gap: 0.75rem;
    }

    .logo {
        display: none;
    }

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

    .nav-wrap_rAESQ-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

@media (max-width: 30em) {
    .content-wrap_WQHdl { padding: 0px 16px; }
    .area_NPum0 { padding: 60px 0px; }
    .hero_DdkB2-ctas { flex-direction: column; }
    .hero_DdkB2-ctas .button_bqBoX { width: 100%; }

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