

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

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

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

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

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

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


/* Base */

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


.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    background: var(--c-primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rad-full);
    z-index: 10000;
    transition: top 0.35s ease-in;
}

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


/*! Animations */

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

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

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

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


html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--ff-body);
    background: var(--c-darker);
    color: var(--c-light);
    line-height: 1.7;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 800;
    line-height: 1.15;
    color: var(--c-light);
}

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

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

/*! Container */

.box_wLt5R {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-block: 0;
    padding-inline: 48px;
}



.masthead_hG6Xb {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgb(0 0 0 / 60%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 0 0 1px 0 rgba(255,255,255,0.1) solid;
    transition: all 0.35s ease-in;
}

.masthead_hG6Xb.scrolled {
    background: rgb(0 0 0 / 80%);
    box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
}

.masthead_hG6Xb .box_wLt5R {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.masthead_hG6Xb .logo {
    font-family: var(--ff-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--c-light);
    letter-spacing: -0.02em;
}

.masthead_hG6Xb .logo span {
    color: var(--c-primary);
}

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

.navigation_A2PLl a {
    font-weight: 500;
    color: var(--c-muted);
    font-size: 14px;
    transition: color 0.35s ease-in;
}

.navigation_A2PLl a:hover {
    color: var(--c-primary);
}

.masthead_hG6Xb-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}


/* Buttons */

.cta_SpPuy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-family: var(--ff-body);
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.35s ease-in;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.cta_SpPuy--primary {
    background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-secondary) 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 14px var(--c-primary-alpha);
}

.cta_SpPuy--primary:hover {
    transform: translate(0, -3px);
    box-shadow: 0 8px 25px var(--c-primary-alpha);
}

.cta_SpPuy--secondary {
    background: transparent;
    border: rgba(255, 255, 255, 0.2) solid 2px;
    color: var(--c-light);
}

.cta_SpPuy--secondary:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.cta_SpPuy--large {
    padding-block: 16px;
    padding-inline: 36px;
    font-size: 16px;
}

.cta_SpPuy--small {
    padding: 8px 20px;
    font-size: 0.813rem;
}


/* Hero */

.showcase_qV6Dh {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.showcase_qV6Dh::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--c-primary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.showcase_qV6Dh::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -200px;
    width: 600px;
    height: 550px;
    background: radial-gradient(circle, var(--c-secondary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.showcase_qV6Dh .box_wLt5R {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.showcase_qV6Dh-content {
}

.showcase_qV6Dh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-block: 6px;
    padding-inline: 16px;
    background: var(--c-primary-alpha);
    border-width: 1px;
    border-style: solid;
    border-color: var(--c-primary-alpha);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-primary);
    margin-bottom: 24px;
}

.showcase_qV6Dh-badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-primary);
}

.showcase_qV6Dh-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--c-light);
}

.showcase_qV6Dh-content h1 em {
    font-style: normal;
    color: var(--c-primary);
}

.showcase_qV6Dh-subtitle {
    font-size: 17px;
    color: var(--c-muted);
    margin-bottom: 32px;
    max-width: 460px;
    line-height: 1.7;
}

.showcase_qV6Dh-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

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

/* --- Stats Bar --- */

.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1240px;
    margin-inline: auto;
    padding: 0 48px 80px;
}

.key-stat {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}

.key-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-value {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--c-light);
    letter-spacing: -0.5px;
}

.stat-value em {
    font-style: normal;
    color: var(--c-primary);
}

.stats-label {
    font-size: 13px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 4px;
}


/* -- SECTIONS -- */

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

.section_BiKsQ--gray {
    background: rgba(255,255,255,0.025);
}

.section_BiKsQ-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section_BiKsQ-head {
    text-align: center;
    margin-bottom: 56px;
}

.section_BiKsQ-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.section_BiKsQ-head p {
    font-size: 1rem;
    color: var(--c-muted);
    max-width: 480px;
    margin: 0 auto;
}

.section_BiKsQ-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section_BiKsQ-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--c-muted);
    margin-bottom: 48px;
    max-width: 460px;
    margin-inline: auto;
}

/* --- Cards --- */

.panel_WPUgL {
    background: var(--c-dark);
    border-radius: 14px;
    padding-block: 32px;
    padding-inline: 28px;
    box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.1);
    transition: all 0.35s ease-in;
}

.panel_WPUgL:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}


/* -- BONUS CARDS -- */

.collection_Bu7Xk--bonuses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.panel_WPUgL--bonus {
    position: relative;
    overflow: hidden;
}

.panel_WPUgL--bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0px;
    height: 4px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
}

.bonus-step {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.panel_WPUgL--bonus h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--c-light);
}

.panel_WPUgL--bonus p {
    color: var(--c-muted);
    font-size: 14px;
    line-height: 1.7em;
    margin-bottom: 16px;
}

.bonus-badge {
    display: inline-block;
    background: var(--c-primary-alpha);
    color: var(--c-primary);
    padding-top: 5px;
    padding-right: 14px;
    padding-bottom: 5px;
    padding-left: 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}



.collection_Bu7Xk--games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.panel_WPUgL--game {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.panel_WPUgL--game:hover {
    border-color: var(--c-primary);
}

.game-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--c-dark);
}

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

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

.game-info {
    padding-block: 14px;
    padding-inline: 16px;
}

.game-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--c-light);
}

.game-info span {
    font-size: 12px;
    color: var(--c-muted);
}

.panel_WPUgL-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease-in;
}

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

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

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

/* PROVIDER CARDS */

.collection_Bu7Xk--providers {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.panel_WPUgL--provider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    aspect-ratio: 2/1;
    overflow: hidden;
    position: relative;
}

.panel_WPUgL--provider:hover {
    border-color: var(--c-primary);
}

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

.panel_WPUgL--provider:hover img {
    filter: brightness(1) contrast(1);
    transform: scale(1.03) rotate(1deg);
}

.panel_WPUgL--provider span {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--c-muted);
    text-align: center;
    opacity: 0;
    transition: opacity 0.35s ease-in;
}

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


/* SPLIT LAYOUT */

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.split-block {
    border-radius: 20px;
    padding: 40px 36px;
}

.split-block--dark {
    background: var(--c-darker);
    color: #fff;
}

.split-block--dark .section_BiKsQ-tag {
    color: var(--c-accent);
}

.split-block--dark h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0.75rem 0 28px;
}

.pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pay-chip {
    background: rgb(255 255 255 / 8%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: background 0.35s ease-in;
}

.pay-chip:hover {
    background: rgb(255 255 255 / 15%);
}

.split-block--white {
    background: var(--c-dark);
    border: rgba(255,255,255,0.1) solid 1px;
}

.split-block--white h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 12px 0 28px;
}



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

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

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

.reviewer-avatar {
    width: 50px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--c-primary), var(--c-secondary));
    display: flex;
    place-content: center;
    place-items: center;
    font-weight: 700;
    color: #fff;
}

.reviewer-info strong {
    display: block;
    color: var(--c-light);
}

.stars {
    color: #f5a623;
    font-size: 0.938rem;
    letter-spacing: 2px;
}

.review-item {
    padding: 20px 0;
    border: 1px 0 0 0 solid rgba(255,255,255,0.1);
}

.review-item:first-child {
    border-top: none;
    padding-top: 0px;
}

.review-stars {
    color: #f5a623;
    font-size: 0.938rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--c-muted);
    line-height: 170%;
    margin-bottom: 6px;
    font-style: italic;
}

.review-who {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-light);
}

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

/** Payments Table **/

.payments-table-wrap {
    overflow-x: auto;
    margin-top: 24px;
}

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

.payments-table th,
.payments-table td {
    padding-top: 16px;
    padding-right: 20px;
    padding-bottom: 16px;
    padding-left: 20px;
    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: 0.813rem;
}

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

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

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

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

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

/* --- About --- */

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

.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: 28px;
    margin-bottom: 16px;
    color: var(--c-light);
}

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

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

.detail-image img {
    width: 100%;
    max-width: 450px;
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--rad-lg);
}

/* CTA Blocks */

.section_BiKsQ--cta {
    text-align: center;
    padding-block: 80px;
    padding-inline: 0;
    background: linear-gradient(to bottom right, var(--c-primary) 0%, var(--c-secondary) 100%);
    position: relative;
    overflow: hidden;
}

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

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

.section_BiKsQ--cta h2 em {
    font-style: normal;
}

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

.section_BiKsQ--cta .cta_SpPuy {
    position: relative;
    background: #fff;
    color: var(--c-primary);
}

.section_BiKsQ--cta .cta_SpPuy:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}



.details-text {
    margin-top: 3rem;
    padding: 36px;
    background: var(--c-dark);
    border-radius: var(--rad-lg);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.1);
}

.details-text h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--c-light);
}

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

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

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

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

.seo-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--c-light);
}

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

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


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

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

.faq-item {
    border: 0 0 1px 0 solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    padding-block: 22px;
    padding-inline: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-light);
    text-align: left;
    transition: color 0.35s ease-in;
}

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

.faq-icon {
    width: 32px;
    height: 30px;
    border-radius: 50%;
    background: var(--c-primary-alpha);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--c-primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.35s ease-in;
}

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

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

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

.faq-answer p {
    padding: 0 0 22px;
    color: var(--c-muted);
    line-height: 1.7em;
}

/*! Info Table */

.info-table {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--c-dark);
    border-radius: var(--rad-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgb(0 0 0 / 4%);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-table tr {
    border: solid rgba(255,255,255,0.1) 0 0 1px 0;
}

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

.info-table th,
.info-table td {
    padding-top: 18px;
    padding-right: 24px;
    padding-bottom: 18px;
    padding-left: 24px;
    text-align: left;
}

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

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


/* CTA Bottom */

.cta-bottom {
    text-align: center;
    padding: 100px 48px;
    background: var(--c-dark);
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(ellipse, var(--c-primary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.cta-bottom h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
}

.cta-bottom h2 em {
    font-style: normal;
    color: var(--c-primary);
}

.cta-bottom p {
    color: var(--c-muted);
    font-size: 17px;
    margin-bottom: 36px;
    position: relative;
}


/* -- FOOTER -- */

.bottom-bar_aNcBP {
    background: var(--c-darker);
    padding-top: 60px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

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

.bottom-bar_aNcBP-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #fff;
}

.bottom-bar_aNcBP-col p {
    color: rgb(255 255 255 / 50%);
    line-height: 1.7em;
    font-size: 14px;
}

.bottom-bar_aNcBP-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bottom-bar_aNcBP-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.bottom-bar_aNcBP-nav a:hover {
    color: #fff;
}

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

.badge-strip img {
    height: 50px;
    opacity: 0.4;
    transition: all 0.35s ease-in;
}

.badge-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.responsible-gaming {
    text-align: center;
    padding-block: 40px;
    padding-inline: 0;
    border-width: 1px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
}

.responsible-gaming h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.responsible-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

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

.gaming-care a {
    display: block;
    transition: all 0.35s ease-in;
}

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

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

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

.bottom-bar_aNcBP-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

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

.footer-update {
    margin-top: 1rem;
    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-nav-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    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;
}

.mobile-nav-btn span {
    width: 22px;
    height: 2px;
    background: var(--c-light);
    transition: all 0.35s ease-in;
    border-radius: 2px;
}

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

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

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

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


/* ==================== RESPONSIVE - TABLET ==================== */

@media (max-width: 64rem) {
    .showcase_qV6Dh .box_wLt5R {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase_qV6Dh-content { order: 1; }
    .showcase_qV6Dh-image { order: 2; }
    .showcase_qV6Dh-subtitle { margin-left: auto; margin-right: auto; }
    .showcase_qV6Dh-ctas { justify-content: center; }
    .showcase_qV6Dh-image img { max-width: 480px; margin: 0 auto; }

    .box_wLt5R { padding-left: 32px; padding-right: 32px; }

    .highlights {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 32px;
        padding-right: 32px;
    }

    .collection_Bu7Xk--bonuses { grid-template-columns: 1fr; }
    .collection_Bu7Xk--games { grid-template-columns: repeat(3, 1fr); }
    .collection_Bu7Xk--providers { grid-template-columns: repeat(4, 1fr); }
    .collection_Bu7Xk--reviews { grid-template-columns: 1fr; }

    .split-row { grid-template-columns: 1fr; }

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

    .cta-bottom {
        padding-left: 32px;
        padding-right: 32px;
    }

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

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

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


/** Responsive - Mobile **/

@media (max-width: 47.9375em) {
    .masthead_hG6Xb .box_wLt5R {
        height: auto;
        padding: 12px 20px;
        gap: 10px;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--ff-heading);
        font-size: 17px;
        font-weight: 800;
        color: var(--c-light);
        text-decoration: none;
        white-space: nowrap;
    }

    .logo-mobile span {
        color: var(--c-primary);
    }

    .mobile-cta {
        display: block;
        flex: 1;
        max-width: 160px;
        padding: 9px 16px;
        background: var(--c-primary);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        border-radius: 999px;
        box-shadow: 0 4px 14px var(--c-primary-alpha);
    }

    .masthead_hG6Xb-actions {
        display: none;
    }

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

    .navigation_A2PLl {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: var(--c-dark);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.35s ease-in;
        box-shadow: -8px 0 32px rgb(0 0 0 / 50%);
        border-left: 2px solid var(--c-primary);
        z-index: 1001;
        gap: 0px;
        overflow-y: auto;
    }

    .navigation_A2PLl.active {
        right: 0;
    }

    .navigation_A2PLl a {
        font-size: 18px;
        padding: 0.8rem 0px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: var(--c-light);
    }

    .showcase_qV6Dh { padding-top: 48px; padding-bottom: 32px; }
    .showcase_qV6Dh-content h1 { font-size: 2rem; }
    .highlights {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .section_BiKsQ { padding: 60px 0; }
    .box_wLt5R { padding: 0px 20px; }
    .section_BiKsQ-title { font-size: 1.75rem; }
    .section_BiKsQ-head h2 { font-size: 1.75rem; }
    .cta-bottom { padding: 60px 20px; }

    .collection_Bu7Xk--bonuses { grid-template-columns: 1fr; }
    .collection_Bu7Xk--games { grid-template-columns: repeat(2, 1fr); }
    .collection_Bu7Xk--providers { grid-template-columns: repeat(3, 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;
    }

    .split-block {
        padding: 28px 24px;
        border-radius: 14px;
    }

    .pay-grid { gap: 8px; }

    .panel_WPUgL { padding: 24px 20px; }
    .panel_WPUgL--review { padding: 20px; }

    .details-text { padding: 24px 20px; }

    .info-table th,
    .info-table td { padding: 14px 16px; }
}

@media (max-width: 479px) {
    .box_wLt5R { padding: 0 16px; }
    .showcase_qV6Dh-ctas { flex-direction: column; }
    .showcase_qV6Dh-ctas .cta_SpPuy { width: 100%; }
    .highlights {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .collection_Bu7Xk--games { grid-template-columns: 1fr 1fr; }
    .collection_Bu7Xk--providers { grid-template-columns: repeat(2, 1fr); }

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

    .cta-bottom { padding: 48px 16px; }
    .cta-bottom h2 { font-size: 1.75rem; }

    .split-block {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .panel_WPUgL { padding: 20px 16px; }
    .details-text { padding: 20px 16px; }

    .info-table th,
    .info-table td { padding: 12px 14px; }

    .info-table th { width: 45%; }
}