/*
 * Theme: Neon Green
 * Typography: Classic Power
 */

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

:root {
    /* Colors */
    --darker: #021a0d;
    --muted: #86efac;
    --secondary: #4ade80;
    --light: #f0fdf4;
    --text: #dcfce7;
    --secondary-alpha: #4ade8040;
    --primary: #22c55e;
    --accent: #86efac;
    --dark: #052e16;
    --primary-alpha: #22c55e40;

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

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

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

    /* Shadows */
    --sh-elevated: 0 8px 30px rgba(0,0,0,0.35);
    --sh-glow: 0 0 30px;
    --sh-card: 0 4px 20px rgba(0,0,0,0.25);
}


/*! Base */

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


.jump-link {
    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(--r-full);
    z-index: 10000;
    transition: top 0.35s ease-out;
}

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



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

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



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

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

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

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

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


/* CONTAINER */

.container_ugtzY {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px;
}



/*! Header */

.top-bar_I9RhF {
    position: sticky;
    top: 0px;
    z-index: 1000;
    background: rgba(0,0,0,0.6);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 0 0 1px 0 solid rgba(255,255,255,0.07);
    transition: all 0.35s ease-out;
}

.top-bar_I9RhF.scrolled {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.top-bar_I9RhF .container_ugtzY {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.top-bar_I9RhF .logo {
    font-family: var(--font-family-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--light);
    letter-spacing: -0.02em;
}

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

.menu_2cdBM {
    display: flex;
    gap: 2rem;
}

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

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

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


/** Buttons **/

.action_wSxMO {
    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: 0.938rem;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.35s ease-out;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.action_wSxMO--primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 14px var(--primary-alpha);
}

.action_wSxMO--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--primary-alpha);
    background: var(--primary);
    color: white;
}

.action_wSxMO--secondary {
    background: transparent;
    border: 2px solid rgb(255 255 255 / 20%);
    color: var(--light);
}

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

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

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


/* Hero */

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

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

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

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

.hero_Fx2R5-content {
    order: 2;
}

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

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

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

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

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

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

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

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



/* STATS BAR */

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

.stats-item {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}

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

.highlight-num {
    font-family: var(--font-family-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--light);
    letter-spacing: -0.03em;
}

.highlight-num em {
    font-style: normal;
    color: var(--primary);
}

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



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

.area_KBuD8--gray {
    background: rgba(255,255,255,0.03);
}

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

.area_KBuD8-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.area_KBuD8-head p {
    font-size: 16px;
    color: var(--muted);
    max-width: 500px;
    margin: 0px auto;
}

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

.area_KBuD8-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 500px;
    margin: 0px auto;
}


/* CARDS */

.tile_4s01r {
    background: var(--dark);
    border-radius: 16px;
    padding-block: 32px;
    padding-inline: 28px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.35s ease-out;
}

.tile_4s01r:hover {
    transform: translate(0, -6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}


/* --- Bonus Cards --- */

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

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

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

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

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

.tile_4s01r--bonus p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

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


/*! Game Cards */

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

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

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

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

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

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

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

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

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

.tile_4s01r-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    place-content: center;
    place-items: center;
    opacity: 0;
    transition: opacity 0.35s ease-out;
}

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

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

.tile_4s01r-name {
    font-weight: 600;
    color: white;
}


/* ==================== PROVIDER CARDS ==================== */

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

.tile_4s01r--provider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

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

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

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

.tile_4s01r--provider span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    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;
    opacity: 0;
    transition: opacity 0.35s ease-out;
}

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


/*
 * Split Layout
 */

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

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

.split-block--dark {
    background: var(--darker);
    color: white;
}

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

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

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

.pay-chip {
    background: rgba(255,255,255,0.08);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding-block: 10px;
    padding-inline: 20px;
    font-size: 13px;
    color: rgb(255 255 255 / 75%);
    font-weight: 500;
    transition: background 0.35s ease-out;
}

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

.split-block--white {
    background: var(--dark);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.07);
}

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



/* Reviews */

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

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

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

.reviewer-avatar {
    width: 50px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

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

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

.review-item {
    padding: 1.25rem 0;
    border: 1px 0 0 0 solid rgba(255,255,255,0.07);
}

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

.review-stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

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

.review-who {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--light);
}

.tile_4s01r--review p {
    color: var(--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(--r-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(--accent);
    text-transform: uppercase;
    font-size: 0.813rem;
}

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

.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-block: 4px;
    padding-inline: 12px;
    background: var(--primary-alpha);
    border-radius: var(--r-full);
    font-size: 0.813rem;
    color: var(--primary);
}


/* About */

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

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
}

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

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

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

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

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

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



/* -- CTA BLOCKS -- */

.area_KBuD8--cta {
    text-align: center;
    padding-top: 80px;
    padding-right: 0;
    padding-bottom: 80px;
    padding-left: 0;
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.area_KBuD8--cta .action_wSxMO {
    position: relative;
    background: white;
    color: var(--primary);
}

.area_KBuD8--cta .action_wSxMO:hover {
    background: rgb(255 255 255 / 20%);
    color: white;
}



/** SEO Text **/

.info-block {
    margin-top: 3rem;
    padding: 36px;
    background: var(--dark);
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,0.07);
}

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

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

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

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

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

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

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

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


/* --- FAQ --- */

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

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

.faq-question {
    width: 100%;
    padding: 22px 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(--light);
    text-align: left;
    transition: color 0.35s ease-out;
}

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

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

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

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

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

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


/*
 * Info Table
 */

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

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

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

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

.info-table th {
    width: 40%;
    font-weight: 600;
    color: var(--primary);
    background: rgb(255 255 255 / 3%);
}

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


/* CTA BOTTOM */

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

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

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

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

.cta-bottom p {
    color: var(--muted);
    font-size: 1.063rem;
    margin-bottom: 2.25rem;
    position: relative;
}


/* ===== Footer ===== */

.end-section_zztZe {
    background: var(--darker);
    padding: 60px 0 0;
}

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

.end-section_zztZe-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.end-section_zztZe-nav a {
    color: rgb(255 255 255 / 60%);
    font-size: 14px;
}

.end-section_zztZe-nav a:hover {
    color: white;
}

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

.trust-seals img {
    height: 50px;
    filter: grayscale(100%) brightness(2);
    transition: all 0.35s ease-out;
}

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

.responsible-gaming {
    text-align: center;
    padding-top: 40px;
    padding-right: 0;
    padding-bottom: 40px;
    padding-left: 0;
    border: 1px 0 solid 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-out;
}

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

.gaming-care img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.35s ease-out;
}

.gaming-care a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.end-section_zztZe-bottom {
    padding: 24px 0;
    text-align: center;
}

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

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

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

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

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



/* Hamburger */

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

.hamburger span {
    width: 22px;
    height: 3px;
    background: var(--light);
    transition: all 0.35s ease-out;
    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;
}




@media (max-width: 1024px) {
    .hero_Fx2R5 .container_ugtzY {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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



/*! Responsive - Mobile */

@media (max-width: 769px) {
    .top-bar_I9RhF .container_ugtzY {
        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(--light);
        text-decoration: none;
        white-space: nowrap;
    }

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

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

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

    .hamburger {
        display: flex;
    }

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

    .menu_2cdBM.active {
        right: 0px;
    }

    .menu_2cdBM a {
        font-size: 1.125rem;
        padding: 0.8rem 0px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        color: var(--light);
    }

    .hero_Fx2R5 { padding-top: 48px; padding-bottom: 32px; }
    .hero_Fx2R5-content h1 { font-size: 2rem; }
    .stat-strip {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .area_KBuD8 { padding: 60px 0px; }
    .container_ugtzY { padding: 0px 20px; }
    .area_KBuD8-title { font-size: 1.75rem; }
    .area_KBuD8-head h2 { font-size: 1.75rem; }
    .cta-bottom { padding: 60px 20px; }

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

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

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

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

@media (max-width: 30rem) {
    .container_ugtzY { padding: 0 16px; }
    .hero_Fx2R5-ctas { flex-direction: column; }
    .hero_Fx2R5-ctas .action_wSxMO { width: 100%; }
    .stat-strip {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .grid_Wnw5v--games { grid-template-columns: 1fr 1fr; }
    .grid_Wnw5v--providers { grid-template-columns: repeat(2, 1fr); }

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

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

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

    .tile_4s01r { padding: 20px 16px; }
    .info-block { padding: 20px 16px; }

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

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