

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

:root {
    /* Colors */
    --secondary: #10b981;
    --primary: #059669;
    --muted: #6ee7b7;
    --dark: #052e1f;
    --primary-alpha: #05966940;
    --light: #ecfdf5;
    --accent: #34d399;
    --secondary-alpha: #10b98140;
    --text: #d1fae5;
    --darker: #021a11;

    /* Typography */
    --typo-body: 'Open Sans', sans-serif;
    --typo-heading: 'Poppins', sans-serif;

    /* Spacing */
    --element-spacing: 20px;
    --gap: 20px;
    --section-padding: 50px;

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-full: 4px;
    --border-radius-lg: 8px;
    --border-radius-md: 6px;

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

/* 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: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    z-index: 10000;
    transition: top .25s ease-out;
}

.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 fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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



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

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

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

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

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

/*
 * Container
 */

.content-wrap_sILzi {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding-block: 0;
    padding-inline: 48px;
}

/* Header */

.nav-wrap_hhAjp {
    position: sticky;
    top: 0px;
    z-index: 1000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(16px);
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.08);
    transition: all .25s ease-out;
}

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

.nav-wrap_hhAjp .content-wrap_sILzi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

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

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

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

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

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



.button_pAmqL {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--typo-body);
    font-size: 0.938rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease-out;
    letter-spacing: 0.02em;
    text-decoration: none;
}

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

.button_pAmqL--primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px var(--primary-alpha);
    background: var(--primary);
    color: #ffffff;
}

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

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

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

.button_pAmqL--small {
    padding-block: 8px;
    padding-inline: 20px;
    font-size: 0.813rem;
}


/* --- Hero --- */

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

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

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

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

.splash_q7g0D-content {
    order: 2;
}

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

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

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

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

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

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

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

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


.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 48px 80px;
}

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

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

.key-num {
    font-family: var(--typo-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--light);
    letter-spacing: -1px;
}

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

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

/*
 * Sections
 */

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

.area_zhk5G--gray {
    background: rgba(255,255,255,0.035);
}

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

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

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

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

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

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

/* Cards */

.card_RH6Sz {
    background: var(--dark);
    border-radius: 16px;
    padding-top: 32px;
    padding-right: 28px;
    padding-bottom: 32px;
    padding-left: 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border: solid 1px rgba(255,255,255,0.08);
    transition: all .25s ease-out;
}

.card_RH6Sz:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}



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

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

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

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

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

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

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


/* ==================== GAME CARDS ==================== */

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

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

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

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

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

.card_RH6Sz--game:hover .game-thumb img {
    transform: scale(1.1);
}

.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: 0.75rem;
    color: var(--muted);
}

.card_RH6Sz-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 .25s ease-out;
}

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

.card_RH6Sz-info {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgb(0 0 0 / 90%));
}

.card_RH6Sz-name {
    font-weight: 600;
    color: #ffffff;
}


/*
 * Provider Cards
 */

.items_jPERF--providers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

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

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

.card_RH6Sz--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(80%) brightness(1.5);
    transition: all .25s ease-out;
}

.card_RH6Sz--provider:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.06);
}

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

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


/* -- SPLIT LAYOUT -- */

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

.split-block {
    border-radius: 16px;
    padding-top: 40px;
    padding-right: 36px;
    padding-bottom: 40px;
    padding-left: 36px;
}

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

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

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

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

.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: 12px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    transition: background .25s ease-out;
}

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

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

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

/* --- Reviews --- */

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

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

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

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

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

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

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

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

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

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

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

.card_RH6Sz--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(--border-radius-lg);
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding: 16px 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: capitalize;
    font-size: 13px;
}

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

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


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

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

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

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

.alt-text h3 {
    font-size: 28px;
    margin-bottom: 1rem;
    color: var(--light);
}

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

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

.alt-media img {
    width: 100%;
    max-width: 380px;
    max-height: 280px;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}

/* ==================== CTA BLOCKS ==================== */

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

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

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

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

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

.area_zhk5G--cta .button_pAmqL {
    position: relative;
    background: #ffffff;
    color: var(--primary);
}

.area_zhk5G--cta .button_pAmqL:hover {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

/** SEO Text **/

.text-section {
    margin-top: 48px;
    padding-top: 36px;
    padding-right: 36px;
    padding-bottom: 36px;
    padding-left: 36px;
    background: var(--dark);
    border-radius: var(--border-radius-lg);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.08);
}

.text-section h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--light);
}

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

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

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

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

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

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

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


/* --- FAQ --- */

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

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

.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 .25s ease-out;
}

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

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

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

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

.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(--muted);
    line-height: 1.7em;
}


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

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

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

.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(--primary);
    background: rgba(255, 255, 255, 0.03);
}

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


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

.cta-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, var(--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: 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 ==================== */

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

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

.colophon_S370B-col h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.colophon_S370B-col p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7em;
    font-size: 0.875rem;
}

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

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

.colophon_S370B-nav a:hover {
    color: #ffffff;
}

.security-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.security-badges img {
    height: 50px;
    opacity: 0.4;
    transition: all .25s ease-out;
}

.security-badges img:hover {
    filter: none;
    opacity: 1;
}

.responsible-gaming {
    text-align: center;
    padding-block: 40px;
    padding-inline: 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: 1.25rem;
}

.responsible-gaming {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.responsible-gaming a {
    display: block;
    transition: all .25s ease-out;
}

.responsible-gaming a:hover {
    transform: scale(1.03);
}

.responsible-gaming img {
    height: 40px;
    filter: grayscale(100%) brightness(2);
    transition: all .25s ease-out;
}

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

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

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

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

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

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

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


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.31rem;
    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;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--light);
    transition: all .25s ease-out;
    border-radius: 2px;
}

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

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

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

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

/*
 * Responsive - Tablet
 */

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

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

    .content-wrap_sILzi { padding-left: 32px; padding-right: 32px; }

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

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

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

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

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

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

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

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


/*! Responsive - Mobile */

@media (max-width: 47.9375em) {
    .nav-wrap_hhAjp .content-wrap_sILzi {
        height: auto;
        padding: 12px 20px;
        gap: 10px;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--typo-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: #ffffff;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        border-radius: 999px;
        box-shadow: 0 4px 14px var(--primary-alpha);
    }

    .nav-wrap_hhAjp-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .nav_7v979.active {
        right: 0px;
    }

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

    .splash_q7g0D { padding-top: 48px; padding-bottom: 32px; }
    .splash_q7g0D-content h1 { font-size: 2rem; }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .area_zhk5G { padding: 60px 0; }
    .content-wrap_sILzi { padding: 0px 20px; }
    .area_zhk5G-title { font-size: 1.75rem; }
    .area_zhk5G-head h2 { font-size: 1.75rem; }
    .cta-bottom { padding: 60px 20px; }

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

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

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

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

@media (max-width: 29.9375em) {
    .content-wrap_sILzi { padding: 0px 16px; }
    .splash_q7g0D-ctas { flex-direction: column; }
    .splash_q7g0D-ctas .button_pAmqL { width: 100%; }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .items_jPERF--games { grid-template-columns: 1fr 1fr; }
    .items_jPERF--providers { grid-template-columns: repeat(2, 1fr); }

    .logo-mobile { font-size: 0.938rem; }
    .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;
    }

    .card_RH6Sz { padding: 20px 16px; }
    .text-section { padding: 20px 16px; }

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

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