/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Electric Pink
 * Typography: Sporty Bold
 * Generated: 2026-08-23T09:08:57.974Z
 */

@import 'https://fonts.googleapis.com/css2?family=Russo+One&family=Lato:wght@400;700&display=swap';

:root {
    /* Colors */
    --color-dark: #1a0a14;
    --color-primary-alpha: #ec489940;
    --color-secondary-alpha: #f472b640;
    --color-text: #fce7f3;
    --color-muted: #f9a8d4;
    --color-primary: #ec4899;
    --color-light: #fdf2f8;
    --color-secondary: #f472b6;
    --color-accent: #f9a8d4;
    --color-darker: #0d0509;

    /* Typography */
    --ff-heading: 'Russo One', sans-serif;
    --ff-body: 'Lato', sans-serif;

    /* Spacing */
    --grid-gap: 12px;
    --pad-element: 16px;
    --pad-section: 40px;

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

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

/* BASE */

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

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

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

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



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

body {
    font-family: var(--ff-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(--ff-heading);
    font-weight: 900;
    line-height: 115%;
    color: var(--color-light);
}

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

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

/*! Container */

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

/* --- Header --- */

.nav-wrap_Ru5xu {
    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.1);
    transition: all 0.25s ease-in-out;
}

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

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

.nav-wrap_Ru5xu .logo {
    font-family: var(--ff-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-light);
    letter-spacing: -0.3px;
}

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

.nav-links_c5s3j {
    display: flex;
    gap: 32px;
}

.nav-links_c5s3j a {
    font-weight: 500;
    color: var(--color-muted);
    font-size: 0.875rem;
    transition: color 0.25s ease-in-out;
}

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

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



.link-btn_7L2Oy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 12px;
    padding-inline: 28px;
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.link-btn_7L2Oy--primary {
    background: linear-gradient(125deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    color: rgb(255,255,255);
    box-shadow: 0 4px 14px var(--color-primary-alpha);
}

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

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

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

.link-btn_7L2Oy--large {
    padding: 16px 36px;
    font-size: 16px;
}

.link-btn_7L2Oy--small {
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    font-size: 0.813rem;
}

/*! Hero */

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

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

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

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

.intro_pDr22-content {
    order: 2;
}

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

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

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

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

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

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

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

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



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

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

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

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

.stats-val em {
    font-style: normal;
    color: var(--color-primary);
}

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

/* ===== Sections ===== */

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

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

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

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

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

.segment_MtIAO-head p {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* -- CARDS -- */

.box_4v5yt {
    background: var(--color-dark);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.1);
    transition: all 0.25s ease-in-out;
}

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


/*! Bonus Cards */

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

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

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

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

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

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

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

/* Game Cards */

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

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

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

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

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

.box_4v5yt--game:hover .game-thumb img {
    transform: scale(1.06);
}

.game-info {
    padding-top: 14px;
    padding-right: 16px;
    padding-bottom: 14px;
    padding-left: 16px;
}

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

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

.box_4v5yt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

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

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

.box_4v5yt-name {
    font-weight: 600;
    color: rgb(255,255,255);
}

/* ===== Provider Cards ===== */

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

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

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

.box_4v5yt--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: brightness(0.6) contrast(0.8);
    transition: all 0.25s ease-in-out;
}

.box_4v5yt--provider:hover img {
    filter: none;
    transform: scale(1.08);
}

.box_4v5yt--provider span {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0px;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-muted);
    text-align: center;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

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

/*
 * Split Layout
 */

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

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

.split-block--dark {
    background: var(--color-darker);
    color: rgb(255,255,255);
}

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

.split-block--dark h2 {
    color: rgb(255,255,255);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 12px 0 1.75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box_4v5yt--review p {
    color: var(--color-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: 0;
    background: rgba(255,255,255,0.02);
    border-radius: var(--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(--color-accent);
    text-transform: uppercase;
    font-size: 0.813rem;
}

.payments-table tbody tr {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgb(255 255 255 / 5%);
    transition: background 0.25s ease-in-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-top: 4px;
    padding-right: 12px;
    padding-bottom: 4px;
    padding-left: 12px;
    background: var(--color-primary-alpha);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--color-primary);
}


/* ===== About ===== */

.info-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.info-row--reverse {
    direction: rtl;
}

.info-row--reverse > * {
    direction: ltr;
}

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

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

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

.info-visual img {
    width: 100%;
    max-width: 420px;
    max-height: 280px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}


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

.segment_MtIAO--cta {
    text-align: center;
    padding-block: 80px;
    padding-inline: 0;
    background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.segment_MtIAO--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0.3;
}

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

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

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

.segment_MtIAO--cta .link-btn_7L2Oy {
    position: relative;
    background: rgb(255,255,255);
    color: var(--color-primary);
}

.segment_MtIAO--cta .link-btn_7L2Oy:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgb(255,255,255);
}

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

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

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

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

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

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

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

.seo-content h2 {
    font-size: 2.25rem;
    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: 1.9em;
}


/* --- FAQ --- */

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

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

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

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

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

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

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.25s ease-in-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(--color-muted);
    line-height: 1.7;
}


/** Info Table **/

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

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

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

.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: 100px 48px;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    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: 800;
    letter-spacing: -1px;
    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 ==================== */

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

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

.colophon_WFKsh-col h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: rgb(255,255,255);
}

.colophon_WFKsh-col p {
    color: rgb(255 255 255 / 50%);
    line-height: 1.7;
    font-size: 0.875rem;
}

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

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

.colophon_WFKsh-nav a:hover {
    color: rgb(255,255,255);
}

.cert-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 50px;
    filter: grayscale(100%) brightness(2) contrast(0.9);
    transition: all 0.25s ease-in-out;
}

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

.responsible-gaming {
    text-align: center;
    padding-block: 40px;
    padding-inline: 0;
    border-width: 1px 0;
    border-style: solid;
    border-color: rgb(255 255 255 / 8%);
}

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

.responsible-text {
    font-size: 14px;
    color: rgb(255 255 255 / 40%);
    margin-bottom: 20px;
}

.safe-play {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.safe-play a {
    display: block;
    transition: all 0.25s ease-in-out;
}

.safe-play a:hover {
    transform: scale(1.05);
}

.safe-play img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.25s ease-in-out;
}

.safe-play a:hover img {
    filter: none;
    opacity: 1;
}

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

.colophon_WFKsh-bottom p {
    font-size: 0.813rem;
    color: rgb(255 255 255 / 40%);
    margin-bottom: 8px;
}

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

.footer-update {
    margin-top: 1rem;
    opacity: 0.6;
}

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

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

/* --- Hamburger --- */

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

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

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

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

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

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


@media (max-width: 63.9375rem) {
    .intro_pDr22 .container_jcaI1 {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

    .info-row { grid-template-columns: 1fr; }
    .info-row--reverse { direction: ltr; }

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

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

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

    .cert-logos { justify-content: center; }
}


/*! Responsive - Mobile */

@media (max-width: 48rem) {
    .nav-wrap_Ru5xu .container_jcaI1 {
        height: auto;
        padding: 12px 20px;
        gap: 10px;
    }

    .logo {
        display: none;
    }

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

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

    .toggle-btn {
        display: flex;
    }

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

    .nav-links_c5s3j.active {
        right: 0px;
    }

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

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

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

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

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

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

@media (max-width: 30em) {
    .container_jcaI1 { padding: 0 16px; }
    .intro_pDr22-ctas { flex-direction: column; }
    .intro_pDr22-ctas .link-btn_7L2Oy { width: 100%; }
    .stat-strip {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .listing_jx6vm--games { grid-template-columns: 1fr 1fr; }
    .listing_jx6vm--providers { grid-template-columns: repeat(2, 1fr); }

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

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

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

    .box_4v5yt { padding: 20px 16px; }
    .description-text { padding: 20px 16px; }

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

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