/* Casino Landing Page Styles - Royal Purple & Gold + Bold Impact */

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

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

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

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

    /* Border Radius */
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-full: 8px;

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

/* -- BASE -- */

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

.skip-to-main {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--primary);
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    z-index: 10000;
    transition: top .25s ease-in;
}

.skip-to-main: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 run-fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

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



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

body {
    font-family: var(--font-family-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(--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 .25s ease-in;
}


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

/** Header **/

.nav-wrap_F6UL1 {
    position: sticky;
    top: 0px;
    z-index: 1000;
    background: rgb(0 0 0 / 60%);
    backdrop-filter: blur(16px);
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.07);
    transition: all .25s ease-in;
}

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

.nav-wrap_F6UL1 .inner_yhMe1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-wrap_F6UL1 .logo {
    font-family: var(--font-family-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--light);
    letter-spacing: -0.5px;
}

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

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

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

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

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

/* ==================== BUTTONS ==================== */

.cta_kOe0k {
    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: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease-in;
    letter-spacing: 0.3px;
    text-decoration: none;
}

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

.cta_kOe0k--primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px var(--primary-alpha);
    background: var(--primary);
    color: rgb(255, 255, 255);
}

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

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

.cta_kOe0k--large {
    padding: 16px 36px;
    font-size: 1rem;
}

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

/* -- HERO -- */

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

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

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

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

.banner_lSEFa-content {
}

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

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

.banner_lSEFa-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    color: var(--light);
}

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

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

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

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

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

/* ===== Stats Bar ===== */

.key-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0px 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.07);
}

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

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

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

/* --- Sections --- */

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

.section_HEnfM--gray {
    background: rgba(255,255,255,0.04);
}

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

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

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

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

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

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

/* -- CARDS -- */

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

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

/* ==================== BONUS CARDS ==================== */

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

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

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

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

.card_OJV9M--bonus p {
    color: var(--muted);
    font-size: 14px;
    line-height: 170%;
    margin-bottom: 1rem;
}

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

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

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

.card_OJV9M--game {
    padding: 0px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: solid rgba(255,255,255,0.07) 1px;
}

.card_OJV9M--game:hover {
    border-color: var(--primary);
    transform: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

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

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

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

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

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

.card_OJV9M-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .25s ease-in;
}

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

.play-btn {
    width: 52px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 1.125rem;
    box-shadow: 0 4px 20px var(--primary-alpha);
    transition: transform .25s ease-in;
}

.card_OJV9M--game:hover .play-btn {
    transform: scale(1.02);
}

/*! Provider Cards — Text-only compact */

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

.card_OJV9M--provider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    text-align: center;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--border-radius-md);
    transition: all .25s ease-in;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none;
}

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

/* --- Payments Standalone --- */

.payments-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding-top: 40px;
    padding-right: 36px;
    padding-bottom: 40px;
    padding-left: 36px;
}

.pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.pay-chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    transition: background .25s ease-in;
}

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

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

.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    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: uppercase;
    font-size: 13px;
}

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

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

/* ===== Reviews ===== */

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

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

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary), var(--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(--light);
}

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

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

/* ==================== ABOUT ==================== */

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

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

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

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

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--light);
}

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

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

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


.section_HEnfM--cta {
    text-align: center;
    padding: var(--sp-section) 0px;
}

.cta-card {
    background: linear-gradient(var(--dark), var(--dark)) padding-box, linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    border: 2px solid transparent;
    border-radius: 16px;
    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: 350px;
    background: radial-gradient(ellipse, var(--primary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

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

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

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

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

/* ===== SEO Text ===== */

.details-text {
    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.07);
}

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

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

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

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

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

.seo-content h2 {
    font-size: 36px;
    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: 1.25rem;
    line-height: 1.9;
}


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

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

.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: 16px;
    font-weight: 600;
    color: var(--light);
    text-align: left;
    transition: color .25s ease-in;
}

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

.faq-icon {
    width: 30px;
    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 .25s ease-in;
}

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

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

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

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

/** Info Table **/

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

.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 tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

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

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

/*
 * CTA Bottom
 */

.cta-bottom {
    text-align: center;
    padding-top: 100px;
    padding-right: 48px;
    padding-bottom: 100px;
    padding-left: 48px;
    background: linear-gradient(var(--dark), var(--dark)) padding-box, linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    border: 1px solid transparent;
    border-radius: 24px;
    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: -1.5px;
    margin-bottom: 16px;
    position: relative;
}

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

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

/*! Footer — 4 columns */

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

.footer_Y1Fxh-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

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

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

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

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

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

.trust-seals {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-seals img {
    height: 28px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all .25s ease-in;
}

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

.resp-logos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resp-logos a {
    display: block;
    transition: all .25s ease-in;
}

.resp-logos a:hover {
    transform: scale(1.03);
}

.resp-logos img {
    height: 28px;
    width: auto;
    filter: grayscale(100%);
    transition: all .25s ease-in;
}

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

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

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

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

/* Hamburger */

.menu-toggle {
    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;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--light);
    transition: all .25s ease-in;
    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: 63.9375rem) {
    .banner_lSEFa .inner_yhMe1 {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

    .footer_Y1Fxh-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
    }
}

/* RESPONSIVE - MOBILE */

@media (max-width: 48rem) {
    .nav-wrap_F6UL1 .inner_yhMe1 {
        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: 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(--primary-alpha);
    }

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

    .menu-toggle {
        display: flex;
    }

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

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

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

    .banner_lSEFa { padding-top: 48px; padding-bottom: 32px; }
    .banner_lSEFa-image { max-width: 320px; }
    .banner_lSEFa-content h1 { font-size: 2rem; }
    .key-stats {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .section_HEnfM { padding: 60px 0px; }
    .inner_yhMe1 { padding: 0 20px; }
    .section_HEnfM-title { font-size: 1.75rem; }
    .section_HEnfM-head h2 { font-size: 1.75rem; }
    .cta-bottom { padding: 60px 20px; border-radius: 12px; }
    .cta-card { padding: 40px 24px; border-radius: 14px; }

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

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

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

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

    .footer_Y1Fxh-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 479px) {
    .inner_yhMe1 { padding: 0 16px; }
    .banner_lSEFa-ctas { flex-direction: column; }
    .banner_lSEFa-ctas .cta_kOe0k { width: 100%; }
    .key-stats {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .layout_4wS3U--games { grid-template-columns: repeat(2, 1fr); }
    .layout_4wS3U--providers { grid-template-columns: repeat(3, 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; }
    .cta-card { padding: 36px 20px; }

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

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

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