/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Deep Violet
 * Typography: Clean Geometric
 * Generated: 2026-08-09T10:01:30.574Z
 */

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

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

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

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

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

    /* Shadows */
    --shadow-card: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 20px;
    --shadow-elevated: 0 4px 16px rgba(0,0,0,0.2);
}

/* ==================== BASE ==================== */

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

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

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

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

@keyframes play-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: 170%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

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

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

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


.content-wrap_8RNL9 {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-top: 0;
    padding-right: 48px;
    padding-bottom: 0;
    padding-left: 48px;
}

/* ===== Dynamics: scroll progress + promo bar ===== */

@keyframes mk13-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.7); opacity: 0.35; }
}

.scrollbar_mk13 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.06);
    z-index: 1100;
    pointer-events: none;
}

.scrollbar_mk13 span {
    display: block;
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.promo-bar_mk13 {
    background: linear-gradient(90deg, var(--darker), var(--dark));
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--accent);
    font-size: 0.813rem;
    font-weight: 600;
    text-align: center;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2px;
}

.promo-bar_mk13-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    animation: mk13-dot-pulse 2.4s ease-in-out infinite;
}

/* Header */

.site-header_o2KOR {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgb(0 0 0 / 60%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: rgba(255,255,255,0.08) solid 0 0 1px 0;
    border-bottom: 1px solid transparent;
    transition: all 300ms ease-in-out;
}

.site-header_o2KOR.scrolled {
    background: rgb(0 0 0 / 80%);
    box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
    border-bottom-color: var(--primary-alpha);
}

.site-header_o2KOR .content-wrap_8RNL9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: height 300ms ease-in-out;
}

.site-header_o2KOR.scrolled .content-wrap_8RNL9 {
    height: 58px;
}

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

.site-header_o2KOR-actions .link-btn_FqBoj--primary {
    will-change: transform;
}

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

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

.main-nav_nilqo a {
    font-weight: 500;
    color: var(--muted);
    font-size: 0.875rem;
    transition: color 300ms ease-in-out;
}

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

.site-header_o2KOR-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}


.link-btn_FqBoj {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    letter-spacing: 0.5px;
    text-decoration: none;
}

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

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

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

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

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

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

/* ===== Hero ===== */

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

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

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

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

.splash_89Ces-content {
}

.splash_89Ces-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 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: 1.5rem;
}

.splash_89Ces-badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: mk13-dot-pulse 1.8s ease-in-out infinite;
}

.mk13-rotate-word {
    display: inline-block;
    color: var(--primary);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Floating chip decor */

.mk13-chip {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.14;
    filter: blur(0.5px);
    background: repeating-conic-gradient(var(--primary) 0deg 18deg, transparent 18deg 36deg);
    z-index: 0;
}

.mk13-chip--a {
    width: 64px;
    height: 64px;
    top: 14%;
    left: 6%;
    animation: mk13-chip-float-a 19s ease-in-out infinite;
}

.mk13-chip--b {
    width: 46px;
    height: 46px;
    bottom: 18%;
    left: 14%;
    animation: mk13-chip-float-b 23s ease-in-out infinite;
    animation-delay: -6s;
}

.mk13-chip--c {
    width: 54px;
    height: 54px;
    top: 60%;
    right: 8%;
    animation: mk13-chip-float-c 26s ease-in-out infinite;
    animation-delay: -11s;
}

@keyframes mk13-chip-float-a {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -18px) rotate(24deg); }
}

@keyframes mk13-chip-float-b {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-14px, 12px) rotate(-20deg); }
}

@keyframes mk13-chip-float-c {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-8px, -14px) rotate(16deg); }
}

.splash_89Ces-ctas {
    transform-origin: center;
    animation: mk13-cta-invite 9s ease-in-out infinite;
}

@keyframes mk13-cta-invite {
    0%, 92%, 100% { transform: scale(1) rotate(0deg); }
    94% { transform: scale(1.035) rotate(-1deg); }
    97% { transform: scale(1.015) rotate(1deg); }
}

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

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

.splash_89Ces-subtitle {
    font-size: 1.063rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 420px;
    line-height: 170%;
}

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

.splash_89Ces-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Stats Bar */

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

.key-stat {
    text-align: center;
    padding-top: 32px;
    padding-right: 16px;
    padding-bottom: 32px;
    padding-left: 16px;
    position: relative;
}

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

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

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

/** Sections **/

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

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

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

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

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

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

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

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

/* --- Cards --- */

.panel_LSp7J {
    background: var(--dark);
    border-radius: 20px;
    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.08);
    transition: all 300ms ease-in-out;
}

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

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

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

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

.panel_LSp7J--bonus::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    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: 0.75rem;
}

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

.panel_LSp7J--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-block: 5px;
    padding-inline: 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* --- Game Cards --- */

.listing_0vM4w--games {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

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

.panel_LSp7J--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.45s ease;
}

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

.game-info {
    padding-block: 14px;
    padding-inline: 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);
}

.panel_LSp7J-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}

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

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

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

/* -- PROVIDER CARDS -- */

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

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

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

.panel_LSp7J--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    transition: all 300ms ease-in-out;
}

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

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

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

/* -- SPLIT LAYOUT -- */

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

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

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

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

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

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

.pay-chip {
    background: rgba(255,255,255,0.08);
    border: rgba(255,255,255,0.12) solid 1px;
    border-radius: 12px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: background 300ms ease-in-out;
}

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

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

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

/* REVIEWS */

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

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

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

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

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

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

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

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

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

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

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

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

/* 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(--rad-lg);
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding-block: 16px;
    padding-inline: 20px;
    text-align: left;
}

.payments-table thead {
    background: rgb(255 255 255 / 5%);
}

.payments-table th {
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    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 300ms ease-in-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: 4px 12px;
    background: var(--primary-alpha);
    border-radius: var(--rad-full);
    font-size: 13px;
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

/* CTA Blocks */

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

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

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

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

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

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

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


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

.text-section h3 {
    font-size: 22px;
    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: 0;
}

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

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

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

.seo-content h3 {
    font-size: 24px;
    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: 700px;
    margin: 0px auto;
}

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

.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 300ms ease-in-out;
}

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
}

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

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


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

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

.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 */

.cta-bottom {
    text-align: center;
    padding: 100px 48px;
    background: var(--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(--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(--primary);
}

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

/*
 * Footer
 */

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

.bottom-bar_ZvJAH-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.bottom-bar_ZvJAH-col h4 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: rgb(255, 255, 255);
}

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

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

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

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

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

.trust-badges img {
    height: 50px;
    filter: brightness(0.6) contrast(0.8);
    transition: all 300ms ease-in-out;
}

.trust-badges img:hover {
    filter: grayscale(0%);
    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: rgb(255 255 255 / 50%);
}

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

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

.responsible-gaming a {
    display: block;
    transition: all 300ms ease-in-out;
}

.responsible-gaming a:hover {
    transform: translateY(-3px) scale(1.02);
}

.responsible-gaming img {
    height: 40px;
    filter: saturate(0) brightness(1.8);
    transition: all 300ms ease-in-out;
}

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

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

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

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

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

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

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

/* -- HAMBURGER -- */

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

.toggle-btn span {
    width: 26px;
    height: 3px;
    background: var(--light);
    transition: all 300ms 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;
}

/** Responsive - Tablet **/

@media (max-width: 63.9375rem) {
    .mk13-chip { display: none; }

    .splash_89Ces .content-wrap_8RNL9 {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

    .bottom-bar_ZvJAH-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

/* Responsive - Mobile */

@media (max-width: 769px) {
    .promo-bar_mk13 {
        font-size: 0.688rem;
        padding: 6px 12px;
        line-height: 1.4;
    }

    .site-header_o2KOR .content-wrap_8RNL9 {
        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: 13px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        border-radius: 999px;
        box-shadow: 0 4px 14px var(--primary-alpha);
    }

    .site-header_o2KOR-actions {
        display: none;
    }

    .toggle-btn {
        display: flex;
    }

    .main-nav_nilqo {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 90%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 300ms ease-in-out;
        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_nilqo.active {
        right: 0;
    }

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

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

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

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

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

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

@media (max-width: 29.9375em) {
    .content-wrap_8RNL9 { padding: 0 16px; }
    .splash_89Ces-ctas { flex-direction: column; }
    .splash_89Ces-ctas .link-btn_FqBoj { width: 100%; }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .listing_0vM4w--games { grid-template-columns: 1fr 1fr; }
    .listing_0vM4w--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;
    }

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

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

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

/* Header logo scroll-shrink (desktop only, kept clear of the mobile .logo{display:none} rule) */
@media (min-width: 770px) {
    .site-header_o2KOR .logo {
        display: inline-block;
        transition: transform 300ms ease-in-out;
    }

    .site-header_o2KOR.scrolled .logo {
        transform: scale(0.94);
    }
}