/*!
 * Stylesheet: Rose Gold
 * Fonts: Oswald / Nunito
 * Date: 2026-08-16T07:18:22.677Z
 */

@import 'https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Nunito:wght@400;600&display=swap';

:root {
    /* Colors */
    --color-darker: #0e0508;
    --color-dark: #1c0a10;
    --color-light: #fff1f2;
    --color-primary: #e11d48;
    --color-accent: #fda4af;
    --color-secondary: #fb7185;
    --color-secondary-alpha: #fb718540;
    --color-text: #ffe4e6;
    --color-primary-alpha: #e11d4840;
    --color-muted: #fecdd3;

    /* Typography */
    --body-font: 'Nunito', sans-serif;
    --heading-font: 'Oswald', sans-serif;

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

    /* Border Radius */
    --rad-sm: 4px;
    --rad-lg: 24px;
    --rad-md: 16px;
    --rad-full: 100px;

    /* Shadows */
    --shadow-sm: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 50px;
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.5);
}



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


.skip-nav {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-block: 12px;
    padding-inline: 24px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rad-md);
    z-index: 10000;
    transition: top .3s ease;
}

.skip-nav:focus {
    top: 10px;
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}



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

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



html {
    scroll-behavior: smooth;
}

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

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

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

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



.content-wrap_MJcWw {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
}



/* Header */

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

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

.masthead_urR0B .content-wrap_MJcWw {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.masthead_urR0B .logo {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.main-nav_2n6LA a {
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.8;
    transition: all .3s ease;
}

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

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



/* -- BUTTONS -- */

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

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

.button_W0SP1--primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--shadow-lg);
    background: var(--color-primary);
    color: rgb(255, 255, 255);
}

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

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

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

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



/** Hero **/

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

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

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

.intro_qsDH9-content {
}

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

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

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

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

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

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

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

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

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

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



/* ==================== SECTIONS ==================== */

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

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

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



/*! Cards */

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

.panel_ruRU4:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

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

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

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

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

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

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

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

.panel_ruRU4--game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease-out;
}

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

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

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

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

.panel_ruRU4-name {
    font-weight: 600;
    color: #FFF;
}

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

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

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

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

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

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

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

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

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

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

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

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

.panel_ruRU4--review p {
    color: var(--color-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: 2rem;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

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

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

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


/* -- CTA BLOCKS -- */

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

.area_nlRtY--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

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

.area_nlRtY--cta .button_W0SP1 {
    position: relative;
    background: #FFF;
    color: var(--color-primary);
}

.area_nlRtY--cta .button_W0SP1:hover {
    background: var(--color-dark);
    color: #ffffff;
}


/*! 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(--rad-lg);
    overflow: hidden;
}

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

.payments-table thead {
    background: rgb(255 255 255 / 5%);
}

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

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

.payments-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-method img {
    height: 32px;
    width: auto;
}

.time-badge {
    display: inline-block;
    padding-block: 4px;
    padding-inline: 12px;
    background: var(--color-primary-alpha);
    border-radius: var(--rad-full);
    font-size: 0.813rem;
    color: var(--color-accent);
}


/*! SEO Text */

.seo-content {
    margin-top: 48px;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--rad-lg);
    border: solid rgb(255 255 255 / 5%) 1px;
}

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

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

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

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

.seo-content {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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


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

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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255 255 255 / 8%);
    border-radius: var(--rad-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: #FFFFFF;
    text-align: left;
    transition: color .3s ease;
}

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

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

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

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

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

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


/* Info Table */

.info-table {
    width: 100%;
    max-width: 850px;
    margin-inline: auto;
    border-collapse: separate;
    border-spacing: 0;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rad-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: 20px 24px;
    text-align: left;
}

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

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



/*
 * Footer
 */

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

.site-footer_NJdRh-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 3.75rem;
}

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

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

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

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

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

.cert-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 50px;
    filter: grayscale(100%) brightness(2) contrast(0.9);
    transition: all .3s ease;
}

.cert-logos img:hover {
    filter: none;
    opacity: 1;
}

.responsible-gaming {
    text-align: center;
    padding-top: 40px;
    padding-right: 0px;
    padding-bottom: 40px;
    padding-left: 0;
    border: 1px 0 rgba(255,255,255,0.05) solid;
}

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

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

.resp-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.resp-logos a {
    display: block;
    transition: all .3s ease;
}

.resp-logos a:hover {
    transform: scale(1.02);
}

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

.resp-logos a:hover img {
    filter: saturate(1) brightness(1);
    opacity: 1;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 650px;
    margin-top: 12px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    opacity: 0.5;
    line-height: 1.6;
}


/*
 * Hamburger & Mobile
 */

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

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-accent);
    transition: all .3s ease;
    border-radius: 2px;
}

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

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

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

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


/* Responsive - Tablet */

@media (max-width: 63.9375em) {
    .intro_qsDH9 .content-wrap_MJcWw {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

    .cert-logos { justify-content: center; }
}



/* ==================== RESPONSIVE - MOBILE ==================== */

@media (max-width: 769px) {
    .masthead_urR0B {
        padding: 0px;
    }

    .masthead_urR0B .content-wrap_MJcWw {
        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(--heading-font);
        font-size: 17px;
        font-weight: 700;
        color: var(--color-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(to bottom right, var(--color-primary), var(--color-secondary));
        color: rgb(255,255,255);
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0.05em;
        border-radius: var(--rad-md);
        box-shadow: 0 4px 15px var(--color-primary-alpha);
    }

    .masthead_urR0B-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

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

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

@media (max-width: 29.9375em) {
    .content-wrap_MJcWw { padding: 0 16px; }
    .area_nlRtY { padding: 60px 0px; }
    .intro_qsDH9-ctas { flex-direction: column; }
    .intro_qsDH9-ctas .button_W0SP1 { width: 100%; }

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