

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@400;500;600&display=swap');

:root {
    --accent: #fb923c;
    --dark: #1a0a0a;
    --primary-alpha: #dc262640;
    --primary: #dc2626;
    --secondary-alpha: #f9731640;
    --secondary: #f97316;
    --darker: #0d0505;
    --light: #fef2f2;
    --text: #fecaca;
    --muted: #f87171;

    --font-family-body: 'Exo 2', sans-serif;
    --font-family-heading: 'Rajdhani', sans-serif;

    --spacing-section: 70px;
    --spacing-element: 30px;
    --spacing-gap: 25px;
    --rounded-lg: 8px;
    --rounded-md: 6px;
    --rounded-full: 4px;
    --rounded-sm: 4px;
    --sh-elevated: 0 4px 16px rgba(0,0,0,0.2);
    --sh-card: 0 2px 8px rgba(0,0,0,0.15);
    --sh-glow: 0 0 20px;
}



/** Base **/

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


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

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



a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



/*
 * Animations
 */

@keyframes go-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


html {
    scroll-behavior: smooth;
}

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

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

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

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


/* Container */

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



.top-bar_y6KKs {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    padding: 16px 0px 16px 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.top-bar_y6KKs .wrapper_a0Otq {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-links_znEdy {
    display: flex;
    gap: 2rem;
}

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

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

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



.action_dtooF {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--rounded-md);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.action_dtooF--primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-elevated);
}

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

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

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

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


/*
 * Hero
 */

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

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

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

.intro_AaF77-content {
}

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

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

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

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

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

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

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

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

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

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


/*
 * Sections
 */

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

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

.area_OzXlN-subtitle {
    text-align: center;
    font-size: 1.063rem;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}


/*! Cards */

.card_rZVDG {
    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(--rounded-lg);
    padding: var(--spacing-element);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.card_rZVDG--bonus {
    text-align: center;
    padding-block: 40px;
    padding-inline: 30px;
}

.card_rZVDG-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
}

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

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

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

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

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

.card_rZVDG--game:hover img {
    transform: scale(1.05);
}

.card_rZVDG-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    place-content: center;
    place-items: center;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card_rZVDG-info {
    position: absolute;
    bottom: 0;
    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));
}

.card_rZVDG-name {
    font-weight: 600;
    color: #fff;
}

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

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

.card_rZVDG--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card_rZVDG--provider span {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 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 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

.stars {
    color: var(--accent);
    font-size: 0.875rem;
}

.card_rZVDG--review p {
    color: var(--muted);
    font-style: italic;
    line-height: 170%;
}


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

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

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

.feature-block--alt {
    direction: rtl;
}

.feature-block--alt > * {
    direction: ltr;
}

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

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

.feature-visual {
    display: flex;
    place-content: center;
    place-items: center;
}

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


/* --- CTA Blocks --- */

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

.area_OzXlN--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.15;
}

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

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

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

.area_OzXlN--cta .action_dtooF:hover {
    background: var(--dark);
    color: white;
}



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

.payments-table th,
.payments-table td {
    padding-block: 20px;
    padding-inline: 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: capitalize;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.payments-table tbody tr {
    border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
    transition: background 0.35s 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: 1rem;
}

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



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

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

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

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

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

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

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

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

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




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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--rounded-md);
    margin-bottom: 0.75rem;
    background: rgb(255 255 255 / 2%);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: left;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.35s 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 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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



/*! Info Table */

.info-table {
    width: 100%;
    max-width: 900px;
    margin: 0px auto;
    border-collapse: separate;
    border-spacing: 0px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rounded-lg);
    overflow: hidden;
}

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

.info-table tr:last-child {
    border-bottom: none;
}

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

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

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



.end-section_JYH5M {
    background: var(--darker);
    padding: 80px 0 0;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.05);
}

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

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

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

.end-section_JYH5M-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.badge-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.badge-strip img:hover {
    filter: none;
    opacity: 1;
}

.responsible-gaming {
    text-align: center;
    padding: 40px 0px 40px 0;
    border-width: 1px 0;
    border-style: solid;
    border-color: rgb(255 255 255 / 5%);
}

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

.responsible-text {
    font-size: 14px;
    color: var(--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.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.responsible-logos img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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



/*
 * Hamburger & Mobile
 */

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

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    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: 64rem) {
    .intro_AaF77 .wrapper_a0Otq {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .feature-block { grid-template-columns: 1fr; }
    .feature-block--alt { direction: ltr; }

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

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

    .badge-strip { justify-content: center; }
}



/* ===== Responsive - Mobile ===== */

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

    .top-bar_y6KKs .wrapper_a0Otq {
        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(--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: rgb(255,255,255);
        font-size: 0.813rem;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.5px;
        border-radius: var(--rounded-md);
        box-shadow: 0 4px 15px var(--primary-alpha);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-links_znEdy {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0,0,0,0.7);
        border-left: 2px solid var(--primary);
        z-index: 1001;
        gap: 0;
    }

    .nav-links_znEdy.active {
        right: 0px;
    }

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

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

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

@media (max-width: 30rem) {
    .wrapper_a0Otq { padding: 0px 16px; }
    .area_OzXlN { padding: 60px 0; }
    .intro_AaF77-ctas { flex-direction: column; }
    .intro_AaF77-ctas .action_dtooF { width: 100%; }

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