/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Rose Gold
 * Typography: Clean Geometric
 * Generated: 2026-09-17T11:30:12.074Z
 */

@import 'https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap';

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

    --font-family-body: 'Open Sans', sans-serif;
    --font-family-heading: 'Poppins', sans-serif;

    --sp-section: 40px;
    --sp-element: 16px;
    --sp-gap: 12px;
    --radius-full: 50px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-sm: 12px;
    --sh-card: 0 4px 20px rgba(0,0,0,0.25);
    --sh-elevated: 0 8px 30px rgba(0,0,0,0.35);
    --sh-glow: 0 0 30px;
}

/*
 * Base
 */

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


.skip-to-main {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    background: var(--theme-primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top 0.3s ease-in-out;
}

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


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

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

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



html {
    scroll-behavior: smooth;
}

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

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

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

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


/*
 * Container
 */

.container_pOYQU {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */

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

.header_nA85b.scrolled {
    background: rgba(0,0,0,0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding-top: 12px;
    padding-right: 0px;
    padding-bottom: 12px;
    padding-left: 0px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header_nA85b .container_pOYQU {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_nA85b .logo {
    font-family: var(--font-family-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-accent);
    text-transform: none;
    letter-spacing: 0.5px;
}

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

.navigation_7h6ga a {
    font-weight: 500;
    color: var(--theme-text);
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

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

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

/* -- BUTTONS -- */

.btn_Rm7C7 {
    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(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: none;
    letter-spacing: 0.8px;
}

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

.btn_Rm7C7--primary:hover {
    transform: scale(1.05);
    box-shadow: var(--sh-elevated);
    background: var(--theme-primary);
    color: #fff;
}

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

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

.btn_Rm7C7--large {
    padding-top: 18px;
    padding-right: 40px;
    padding-bottom: 18px;
    padding-left: 40px;
    font-size: 17px;
}

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


/* ==================== HERO ==================== */

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

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

.hero_TGrBd .container_pOYQU {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero_TGrBd-content {
    order: 2;
}

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

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

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

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

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

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

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

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

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

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


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

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

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

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

/** Cards **/

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

.item_AzDDi:hover {
    transform: scale(1.05);
    box-shadow: var(--sh-elevated);
    border-color: var(--theme-primary);
}

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

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

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

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

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

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

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

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

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

.item_AzDDi-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.3s ease-in-out;
}

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

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

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

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

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

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

.item_AzDDi--provider:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

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

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

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

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

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

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

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

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

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

/*! About / Content Layout */

.alternating {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

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

.alt-row--flip {
    direction: rtl;
}

.alt-row--flip > * {
    direction: ltr;
}

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

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

.alt-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alt-media img {
    width: 100%;
    max-width: 450px;
    max-height: 320px;
    object-fit: contain;
}



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

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

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

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

.segment_9yE3G--cta .btn_Rm7C7 {
    position: relative;
    background: #fff;
    color: var(--theme-primary);
}

.segment_9yE3G--cta .btn_Rm7C7:hover {
    background: var(--theme-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: 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(--theme-accent);
    text-transform: none;
    font-size: 0.813rem;
    letter-spacing: 0.03em;
}

.payments-table tbody tr {
    border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
    transition: background 0.3s ease-in-out;
}

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

/* ===== SEO Text ===== */

.description-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 rgba(255,255,255,0.05) 1px;
}

.description-text h3 {
    font-size: 24px;
    margin-bottom: 1.25rem;
    color: var(--theme-accent);
}

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

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

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

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

.seo-content h2 {
    font-size: 40px;
    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(--theme-accent);
}

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


/*
 * FAQ
 */

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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-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: rgb(255, 255, 255);
    text-align: left;
    transition: color 0.3s ease-in-out;
}

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-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(--theme-muted);
    line-height: 180%;
}

/* ==================== INFO TABLE ==================== */

.info-table {
    width: 100%;
    max-width: 900px;
    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-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgb(255 255 255 / 5%);
}

.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(--theme-accent);
    background: rgb(255 255 255 / 2%);
}

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

/** Footer **/

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

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

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

.bottom-bar_WgeF0-col p {
    color: var(--theme-muted);
    line-height: 1.8em;
}

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

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

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

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

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

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

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

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

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

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

.responsible-logos a {
    display: block;
    transition: all 0.3s ease-in-out;
}

.responsible-logos a:hover {
    transform: translateY(-3px) scale(1.02);
}

.responsible-logos img {
    height: 40px;
    filter: grayscale(80%) brightness(1.5);
    transition: all 0.3s ease-in-out;
}

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

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

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

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

.footer-update {
    margin-top: 1rem;
    opacity: 0.6;
}

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

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

/*! Hamburger & Mobile */

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

.toggle-btn span {
    width: 30px;
    height: 3px;
    background: var(--theme-accent);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

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

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

.toggle-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) {
    .hero_TGrBd .container_pOYQU {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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


/* -- RESPONSIVE - MOBILE -- */

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

    .header_nA85b .container_pOYQU {
        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(--theme-accent);
        text-transform: none;
        text-decoration: none;
        white-space: nowrap;
    }

    .mobile-cta {
        display: block;
        flex: 1;
        max-width: 180px;
        padding: 10px 16px;
        background: linear-gradient(to bottom, var(--theme-primary), var(--theme-secondary));
        color: white;
        font-size: 0.813rem;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0.03em;
        border-radius: var(--radius-md);
        box-shadow: 0 4px 15px var(--theme-primary-alpha);
    }

    .header_nA85b-actions {
        display: none;
    }

    .toggle-btn {
        display: flex;
    }

    .navigation_7h6ga {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 80%;
        max-width: 420px;
        height: 100vh;
        background: var(--theme-darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.3s ease-in-out;
        box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
        border-left: 2px solid var(--theme-primary);
        z-index: 1001;
        gap: 0px;
    }

    .navigation_7h6ga.active {
        right: 0px;
    }

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

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

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

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

@media (max-width: 30rem) {
    .container_pOYQU { padding: 0 16px; }
    .segment_9yE3G { padding: 60px 0; }
    .hero_TGrBd-ctas { flex-direction: column; }
    .hero_TGrBd-ctas .btn_Rm7C7 { width: 100%; }

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