

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

:root {
    /* Colors */
    --color-accent: #c4b5fd;
    --color-primary: #8b5cf6;
    --color-secondary-alpha: #a78bfa40;
    --color-light: #f5f3ff;
    --color-dark: #1e1033;
    --color-text: #ede9fe;
    --color-darker: #0f0819;
    --color-muted: #c4b5fd;
    --color-primary-alpha: #8b5cf640;
    --color-secondary: #a78bfa;

    /* Typography */
    --font-family-body: 'Rubik', sans-serif;
    --font-family-heading: 'Teko', sans-serif;

    /* Spacing */
    --item-gap: 25px;
    --element-space: 30px;
    --section-space: 70px;

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

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

/*! Base */

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--color-primary);
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rounded-full);
    z-index: 10000;
    transition: top 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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


/* Animations */

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

@keyframes slideUp-fx {
    0% { opacity: 0; transform: translateY(1.5rem); }
    100% { opacity: 1; transform: translateY(0); }
}

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



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

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

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

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

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


.inner_0MTbI {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
}


.masthead_CNfIl {
    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 solid rgba(255,255,255,0.1);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.masthead_CNfIl.scrolled {
    background: rgb(0 0 0 / 80%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

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

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

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

.main-nav_VuyFb a {
    font-weight: 500;
    color: var(--color-muted);
    font-size: 14px;
    transition: color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav_VuyFb a:hover {
    color: var(--color-primary);
}

.masthead_CNfIl-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* -- BUTTONS -- */

.action_MWunj {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.action_MWunj--primary {
    background: linear-gradient(to bottom right, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    color: rgb(255, 255, 255);
    box-shadow: 0 4px 14px var(--color-primary-alpha);
}

.action_MWunj--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--color-primary-alpha);
}

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

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

.action_MWunj--large {
    padding-block: 16px;
    padding-inline: 36px;
    font-size: 1rem;
}

.action_MWunj--small {
    padding: 8px 20px;
    font-size: 13px;
}



.intro_CO3Ia {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-right: 0;
    padding-bottom: 60px;
    padding-left: 0;
}

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

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

.intro_CO3Ia .inner_0MTbI {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro_CO3Ia-content {
}

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

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

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

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

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

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

.intro_CO3Ia-image {
    position: relative;
    border-radius: var(--rounded-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro_CO3Ia-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-elevated);
}

/* ==================== STATS BAR ==================== */

.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1180px;
    margin: 0px 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-number {
    font-family: var(--font-family-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-light);
    letter-spacing: -0.5px;
}

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

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

/*! Sections */

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

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

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

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

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

.segment_xPLuT-head p {
    font-size: 16px;
    color: var(--color-muted);
    max-width: 480px;
    margin-inline: auto;
}

.segment_xPLuT-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.segment_xPLuT-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--color-muted);
    margin-bottom: 3rem;
    max-width: 480px;
    margin: 0px auto;
}

/** Cards **/

.tile_DcyeJ {
    background: var(--color-dark);
    border-radius: 14px;
    padding-top: 32px;
    padding-right: 28px;
    padding-bottom: 32px;
    padding-left: 28px;
    box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tile_DcyeJ:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 40px rgb(0 0 0 / 40%);
}


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

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

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

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

.tile_DcyeJ--bonus h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.63rem;
    color: var(--color-light);
}

.tile_DcyeJ--bonus p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7em;
    margin-bottom: 1rem;
}

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


/* --- Game Cards — Portrait 3/4 with overlay --- */

.layout_R6pUh--games {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.tile_DcyeJ--game {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.1);
}

.tile_DcyeJ--game:hover {
    border-color: var(--color-primary);
    transform: none;
    box-shadow: 0 8px 30px rgb(0 0 0 / 50%);
}

.game-thumb {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-dark);
    position: relative;
}

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

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

.tile_DcyeJ-info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0;
    padding-top: 20px;
    padding-right: 14px;
    padding-bottom: 12px;
    padding-left: 14px;
    background: linear-gradient(transparent, rgb(0 0 0 / 88%));
}

.tile_DcyeJ-name {
    font-size: 0.813rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    display: block;
}

.tile_DcyeJ-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    place-content: center;
    place-items: center;
    opacity: 0;
    transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 1.125rem;
    box-shadow: 0 4px 20px var(--color-primary-alpha);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tile_DcyeJ--game:hover .play-btn {
    transform: translateY(-4px);
}

/* PROVIDER CARDS — TEXT-ONLY COMPACT */

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

.tile_DcyeJ--provider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-muted);
    text-align: center;
    background: var(--color-dark);
    border: 1px rgba(255,255,255,0.1) solid;
    border-radius: var(--rounded-md);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none;
}

.tile_DcyeJ--provider:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-alpha);
    transform: none;
    box-shadow: none;
}

/* Payments Standalone */

.payments-card {
    background: var(--color-dark);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 36px;
}

.pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.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: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: background 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pay-chip:hover {
    background: rgba(255,255,255,0.15);
}

.payments-table-wrap {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rounded-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(--color-accent);
    text-transform: uppercase;
    font-size: 13px;
}

.payments-table tbody tr {
    border: rgba(255, 255, 255, 0.05) 0 0 1px 0 solid;
    transition: background 350ms 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: 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(--rounded-full);
    font-size: 13px;
    color: var(--color-primary);
}


/* ==================== REVIEWS ==================== */

.layout_R6pUh--reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--item-gap);
}

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

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

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    display: flex;
    place-content: center;
    place-items: center;
    font-weight: 700;
    color: rgb(255, 255, 255);
    flex-shrink: 0;
    font-size: 16px;
}

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

.stars {
    color: #fbbf24;
    font-size: 15px;
    letter-spacing: 2px;
}

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

/** About **/

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

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

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

.feature-visual img {
    width: 100%;
    max-width: 380px;
    max-height: 320px;
    object-fit: contain;
    border-radius: var(--rounded-lg);
}

/* ===== CTA Blocks — Gradient border card ===== */

.segment_xPLuT--cta {
    text-align: center;
    padding: var(--section-space) 0;
}

.cta-card {
    background: linear-gradient(var(--color-dark), var(--color-dark)) padding-box, linear-gradient(to right, var(--color-primary), var(--color-secondary)) border-box;
    border: 2px solid transparent;
    border-radius: 18px;
    padding-top: 60px;
    padding-right: 48px;
    padding-bottom: 60px;
    padding-left: 48px;
    position: relative;
    overflow: hidden;
}

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

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

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

.cta-card p {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 32px;
    position: relative;
}

.cta-card .action_MWunj--primary {
    position: relative;
}

/** SEO Text **/

.text-block {
    margin-top: 48px;
    padding: 36px;
    background: var(--color-dark);
    border-radius: var(--rounded-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

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

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

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

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

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

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

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

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

/* --- FAQ --- */

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

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

.faq-question {
    width: 100%;
    padding-top: 22px;
    padding-right: 0;
    padding-bottom: 22px;
    padding-left: 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(--color-light);
    text-align: left;
    transition: color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary-alpha);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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



.info-table {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px;
    background: var(--color-dark);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: solid 1px rgba(255,255,255,0.1);
}

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

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

.info-table tr:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

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

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

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


/* CTA BOTTOM */

.cta-bottom {
    text-align: center;
    padding-block: 100px;
    padding-inline: 48px;
    background: linear-gradient(var(--color-dark), var(--color-dark)) padding-box, linear-gradient(to right, var(--color-primary), var(--color-secondary)) border-box;
    border: 1px solid transparent;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

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

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

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

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


/* --- Footer — 4 columns --- */

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

.colophon_RZwJO-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 48px;
}

.colophon_RZwJO-col h4 {
    font-size: 0.813rem;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.colophon_RZwJO-col p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7em;
    font-size: 14px;
}

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

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

.colophon_RZwJO-nav a:hover {
    color: var(--color-light);
}

.trust-seals {
    display: flex;
    flex-direction: column;
    gap: 0.63rem;
}

.trust-seals img {
    height: 28px;
    width: auto;
    filter: grayscale(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-seals img:hover {
    filter: none;
    opacity: 1;
}

.gaming-care {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gaming-care a {
    display: block;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gaming-care a:hover {
    transform: translateY(-4px);
}

.gaming-care img {
    height: 28px;
    width: auto;
    filter: grayscale(100%) brightness(2) contrast(0.9);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.colophon_RZwJO-bottom {
    padding-block: 24px;
    padding-inline: 0;
    text-align: center;
}

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

.colophon_RZwJO-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: 12px auto 0;
    opacity: 0.5;
    line-height: 1.6em;
}



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

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--color-light);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

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

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

/** Responsive - Tablet **/

@media (max-width: 1025px) {
    .intro_CO3Ia .inner_0MTbI {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

    .colophon_RZwJO-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}


/*! Responsive - Mobile */

@media (max-width: 48em) {
    .masthead_CNfIl .inner_0MTbI {
        height: auto;
        padding: 12px 20px;
        gap: 10px;
    }

    .logo {
        display: none;
    }

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

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

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

    .masthead_CNfIl-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav_VuyFb {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 90%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-dark);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 350ms cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgb(0 0 0 / 50%);
        border-left: 2px solid var(--color-primary);
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
    }

    .main-nav_VuyFb.active {
        right: 0;
    }

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

    .intro_CO3Ia { padding-top: 48px; padding-bottom: 32px; }
    .intro_CO3Ia-image { max-width: 360px; }
    .intro_CO3Ia-content h1 { font-size: 2rem; }
    .highlights {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .segment_xPLuT { padding: 60px 0px; }
    .inner_0MTbI { padding: 0px 20px; }
    .segment_xPLuT-title { font-size: 1.75rem; }
    .segment_xPLuT-head h2 { font-size: 1.75rem; }
    .cta-bottom { padding: 60px 20px; border-radius: 12px; }
    .cta-card { padding: 40px 24px; border-radius: 14px; }

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

    .payments-card { padding: 28px 24px; border-radius: 14px; }

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

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

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

    .colophon_RZwJO-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 481px) {
    .inner_0MTbI { padding: 0 16px; }
    .intro_CO3Ia-ctas { flex-direction: column; }
    .intro_CO3Ia-ctas .action_MWunj { width: 100%; }
    .highlights {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .layout_R6pUh--games { grid-template-columns: repeat(2, 1fr); }
    .layout_R6pUh--providers { grid-template-columns: repeat(3, 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; }
    .cta-card { padding: 36px 20px; }

    .tile_DcyeJ { padding: 20px 16px; }
    .text-block { padding: 20px 16px; }

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

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