:root {
    --primary: #CD212A;
    --accent: #E8323C;
    --accent-hover: #B71924;
    --brand-start: #7f1d1d;
    --brand-mid: #CD212A;
    --brand-end: #f87171;
    --dark: #1E2430;
    --darker: #161B26;
    --light: #f0f3f7;
    --text: #334155;
    --border: #e8ecf2;
    --success: #22c55e;
    --radius: 8px;
    --sidebar-width: 280px;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text);
    margin: 0;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

/* HEADER */
header {
    background: var(--dark);
    border-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 12px 0;
}

header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-start) 0 33.333%, var(--brand-mid) 33.333% 66.666%, var(--brand-end) 66.666% 100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
}

.fallback-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent);
}

.desktop-nav {
    display: none;
    gap: 25px;
}

@media(min-width: 900px) {
    .desktop-nav {
        display: flex;
    }

    .desktop-nav a {
        font-weight: 600;
        color: var(--accent);
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
        color: white;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-link {
    font-weight: 600;
    color: var(--accent);
    display: none;
    cursor: pointer;
}

.login-link:hover {
    color: white;
}

@media(min-width: 600px) {
    .login-link {
        display: block;
    }
}

.cta-button {
    background: var(--accent);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-hover);
}

/* GAME STAGE HERO */
.game-stage {
    background:
        radial-gradient(circle at 0 42%, rgba(0, 140, 69, 0.13), transparent 34%),
        radial-gradient(circle at 100% 42%, rgba(205, 33, 42, 0.18), transparent 35%),
        linear-gradient(180deg, var(--darker) 0%, #1e2430 100%);
    color: white;
    padding: 40px 0 60px;
}

.game-meta-header {
    text-align: center;
    margin-bottom: 30px;
}

.game-meta-header h1 {
    margin: 0;
    font-size: 2.4rem;
    letter-spacing: -1px;
}

.subtitle {
    color: #94a3b8;
    margin-top: 5px;
    font-size: 1.1rem;
}

/* VIEWPORT & TICKER */
.game-viewport {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #334155;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.live-ticker {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.8rem;
    padding: 8px;
    display: flex;
    gap: 20px;
    white-space: nowrap;
    overflow: hidden;
    border-bottom: 1px solid #333;
}

.ticker-item {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
}

.game-iframe-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.play-trigger {
    text-align: center;
    padding: 30px;
}

.play-trigger h2 {
    font-size: 2.5rem;
    margin: 0 0 10px;
    color: var(--accent);
    text-shadow: 0 2px 12px rgba(205, 33, 42, 0.45);
    letter-spacing: 2px;
}

.play-trigger p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.game-controls-ui {
    background: var(--darker);
    padding: 15px;
    border-top: 1px solid #334155;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
    align-items: center;
}

.control-panel label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
}

.stepper {
    display: flex;
    background: #0f172a;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.stepper button {
    width: 30px;
    background: #334155;
    border: none;
    color: white;
    cursor: pointer;
}

.stepper input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    font-weight: bold;
}

.difficulty-selector {
    display: flex;
    gap: 4px;
    justify-content: center;
    background: #0f172a;
    padding: 4px;
    border-radius: 4px;
}

.diff-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
}

.diff-btn.active {
    background: #334155;
    color: white;
    font-weight: bold;
}

.diff-btn.active.easy {
    background: var(--accent);
    color: white;
}

.action-btn {
    display: block;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--accent-hover);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    color: #94a3b8;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

/* MAIN CONTENT LAYOUT */
.main-content-layout {
    display: flex;
    gap: 50px;
    padding-top: 60px;
    padding-bottom: 60px;
    align-items: flex-start;
}

.toc-sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: none;
}

@media(min-width: 1024px) {
    .toc-sidebar {
        display: block;
    }
}

.toc-sidebar h3 {
    margin-top: 0;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.toc-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-sidebar li {
    margin-bottom: 12px;
}

.toc-sidebar a {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.toc-sidebar a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.promo-box {
    background: var(--dark);
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(205, 33, 42, 0.28);
}

.promo-box h4 {
    margin: 0;
    color: var(--accent);
}

.small-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 10px;
    font-size: 0.85rem;
    cursor: pointer;
}

.long-read {
    flex: 1;
    max-width: 100%;
}

.long-read section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.long-read h2 {
    font-size: 2rem;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.long-read h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-top: 30px;
    margin-bottom: 15px;
}

.long-read p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.detailed-list li {
    margin-bottom: 15px;
}

/* VISUALS & TABLES */
.article-visual {
    margin: 40px 0;
    background: #f1f5f9;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px dashed #cbd5e1;
    text-align: center;
}

.article-visual figcaption {
    margin-top: 15px;
    font-style: italic;
    color: #64748b;
    font-size: 0.9rem;
}

/* OPTIMIZED TABLES FOR MOBILE */
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.data-table th {
    background: var(--dark);
    color: var(--accent);
    padding: 15px;
    text-align: left;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
}

.data-table tr:hover {
    background: #f8fafc;
}

/* APP & PAYMENT */
.app-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.tech-spec {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.tech-spec h4 {
    color: var(--dark);
    margin-top: 0;
    font-size: 1.1rem;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.download-cta-area {
    text-align: center;
    margin-top: 40px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(205, 33, 42, 0.25);
}

.download-cta-area h3 {
    color: white;
    font-size: 1.75rem;
    margin: 0 0 10px;
}

.download-cta-area > p:not(.small-note) {
    color: #cbd5e1;
    margin-bottom: 0;
}

.download-cta-area .small-note {
    color: #94a3b8;
    margin-bottom: 0;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 12px;
    counter-reset: app-step;
}

.steps-list li {
    position: relative;
    counter-increment: app-step;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px 16px 58px;
}

.steps-list li::before {
    content: counter(app-step);
    position: absolute;
    left: 16px;
    top: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.steps-list strong,
.steps-list span {
    display: block;
}

.steps-list strong {
    color: var(--dark);
    margin-bottom: 3px;
}

.steps-list span {
    color: #64748b;
    font-size: 0.92rem;
}

.small-note {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 10px;
}

.payment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.payment-list li {
    background: white;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.payment-list strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1rem;
}

.alert-box {
    background: #fff1f2;
    border-left: 5px solid var(--accent);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

/* FAQ */
.accordion details {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.accordion summary {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.accordion summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.accordion details[open] summary {
    border-bottom: 1px solid #f1f5f9;
}

.accordion details[open] summary::after {
    content: '−';
}

.acc-text {
    padding: 20px;
    color: #475569;
}

/* FINAL CTA */
.final-cta-section {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: white;
    border-radius: var(--radius);
    margin-top: 60px;
    border: 1px solid rgba(205, 33, 42, 0.25);
}

.final-cta-section h3 {
    font-size: 2rem;
    margin-top: 0;
    color: var(--accent);
}

.final-cta-section p {
    color: rgba(255,255,255,0.8);
}

.cta-button.large {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* FOOTER */
.main-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
    border-top: 0;
    position: relative;
}
.main-footer::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-start) 0 33.333%, var(--brand-mid) 33.333% 66.666%, var(--brand-end) 66.666% 100%);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: var(--accent);
    margin-top: 0;
}

.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-cols {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.f-col h4 {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.f-col a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    cursor: pointer;
}

.f-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255,255,255,0.5);
}

.payment-icons-footer {
    display: flex;
    gap: 10px;
}

.payment-icons-footer span {
    background: rgba(255,255,255,0.08);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-content-layout {
        flex-direction: column;
    }

    .toc-sidebar {
        display: none;
    }

    .game-controls-ui {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        flex-direction: column;
        gap: 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .app-details-grid {
        grid-template-columns: 1fr;
    }

    .header-content .desktop-nav {
        display: none;
    }

    .game-meta-header h1 {
        font-size: 1.8rem;
    }

    .play-trigger h2 {
        font-size: 1.8rem;
    }

    .final-cta-section {
        padding: 40px 20px;
    }
}

/* Content Images */
.content-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* App showcase */
.app-showcase-container {
    margin: 40px 0;
    text-align: center;
    background: #f1f5f9;
    padding: 20px 0;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.app-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .app-scroller {
        justify-content: center;
    }
}

.app-screen {
    flex: 0 0 auto;
    height: auto;
    max-height: 400px;
    width: auto;
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    scroll-snap-align: center;
    border: 3px solid var(--dark);
    background: #000;
}

.app-scroller::-webkit-scrollbar {
    height: 8px;
}

.app-scroller::-webkit-scrollbar-track {
    background: transparent;
}

.app-scroller::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 20px;
}

.app-showcase-container figcaption {
    margin-top: 15px;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== BURGER MENU ===== */
.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}
.burger-btn span {
    display: block;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger-btn.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
@media(min-width: 900px) { .burger-btn { display: none; } }

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 28, 0.98);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 60px 0 40px;
}
.mobile-nav.active { display: flex; }
@media(min-width: 900px) { .mobile-nav { display: none !important; } }
.mobile-nav a {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.35rem;
    padding: 15px 40px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(205,33,42,0.12);
    transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: #fff; background: rgba(205,33,42,0.14); }
.mobile-nav .cta-button {
    margin-top: 28px;
    width: auto;
    padding: 14px 44px;
    font-size: 1rem;
    border-bottom: none;
    border-radius: 4px;
    background: var(--accent);
    color: white;
}
.mobile-nav .cta-button:hover { background: var(--accent-hover); color: white; }
/* ===== END BURGER MENU ===== */

/* ===== NETFLIX CASINO EDITORIAL SYSTEM ===== */
.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    min-width: 0;
}
.wordmark-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: linear-gradient(145deg, #e3343e, #a90f1a);
    color: white;
    font-weight: 800;
    font-size: 0;
    letter-spacing: -1px;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.wordmark-mark::before { content: 'N'; font-size: 1.05rem; letter-spacing: -0.04em; }
.wordmark-copy {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
}
.wordmark-copy small {
    margin-top: 4px;
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.footer-wordmark { margin-bottom: 18px; }
.status-pill {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 5px 10px;
    border: 1px solid rgba(232, 50, 60, 0.48);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    gap: 8px;
}
.status-pill::before {
    content: '';
    width: 21px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand-start) 0 33.333%, var(--brand-mid) 33.333% 66.666%, var(--brand-end) 66.666% 100%);
}
.review-score {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}
.verdict-box {
    display: grid;
    grid-template-columns: minmax(130px, 0.35fr) 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    border: 1px solid #dbe2ea;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    background: #fff1f2;
}
.verdict-box strong { color: var(--dark); }
.verdict-box span { color: #475569; }
.source-note {
    margin: 22px 0;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: #edf4f7;
    color: #475569;
    font-size: 0.92rem;
}
.source-note a { color: #a5101b; text-decoration: underline; text-underline-offset: 3px; }
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}
.warning-list li { border-left-color: #dc2626; }
.article-visual figcaption { max-width: 760px; margin-inline: auto; }
.mobile-sticky-cta { display: none; }

@media (max-width: 720px) {
    .wordmark-copy { font-size: 0.88rem; }
    .wordmark-mark { width: 38px; height: 38px; flex-basis: 38px; }
    .check-grid { grid-template-columns: 1fr; }
    .verdict-box { grid-template-columns: 1fr; gap: 8px; }
    .mobile-sticky-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 1100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 11px 16px;
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 10px;
        background: rgba(22, 27, 38, 0.97);
        color: #fff;
        box-shadow: 0 16px 38px rgba(0,0,0,0.42);
        backdrop-filter: blur(12px);
    }
    .mobile-sticky-cta span { color: #cbd5e1; font-size: 0.7rem; }
    .mobile-sticky-cta strong { color: var(--accent); font-size: 0.78rem; text-align: right; }
    body { padding-bottom: 76px; }
}

@media (max-width: 540px) {
    .header-actions > .cta-button { display: none; }
    .header-actions { gap: 10px; }
    .game-stage { padding-top: 28px; }
    .game-iframe-wrapper { aspect-ratio: 4 / 3; }
    .play-trigger { padding: 18px; }
    .play-trigger h2 { font-size: 1.35rem; letter-spacing: 1px; }
    .play-trigger p { font-size: 0.82rem; }
    .long-read h2 { font-size: 1.55rem; }
    .table-container { margin-inline: -8px; }
}
/* ===== END NETFLIX CASINO EDITORIAL SYSTEM ===== */

/* ===== BONUS-FIRST LANDING PAGE ===== */
.bonus-site {
    --bonus-gold: #f6c453;
    --bonus-cyan: #20c7d9;
    --bonus-ink: #0c1320;
    --bonus-panel: #141d2d;
    background: #f5f7fb;
    overflow-x: hidden;
}

.bonus-site header::after {
    background: linear-gradient(90deg, var(--accent), var(--bonus-gold), var(--bonus-cyan));
}

.bonus-site .wordmark-mark {
    background: linear-gradient(145deg, var(--accent), #fb7185);
    box-shadow: 0 0 0 4px rgba(232, 50, 60, 0.12);
}

.bonus-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(32, 199, 217, 0.13), transparent 30%),
        radial-gradient(circle at 72% 0%, rgba(246, 196, 83, 0.12), transparent 32%),
        linear-gradient(135deg, #080d16 0%, #101827 48%, #171d2b 100%);
}

.bonus-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right, #000, transparent 85%);
}

.bonus-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: 50px;
    min-width: 0;
}

.bonus-hero-copy,
.mascot-hero-card {
    min-width: 0;
}

.bonus-eyebrow,
.section-kicker {
    display: inline-block;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bonus-hero-copy h1 {
    max-width: 720px;
    margin: 14px 0 20px;
    color: #fff;
    font-size: clamp(2.65rem, 5vw, 4.75rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.bonus-hero-copy > p {
    max-width: 680px;
    margin: 0;
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.75;
}

.bonus-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.bonus-hero-actions .cta-button.large {
    margin-top: 0;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 6px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
}

.ghost-button:hover {
    border-color: var(--bonus-cyan);
    background: rgba(32,199,217,0.08);
}

.bonus-proof {
    display: flex;
    gap: 9px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.bonus-proof span {
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-offer-card {
    max-width: 620px;
    margin-top: 26px;
    padding: 20px;
    border: 1px solid rgba(246,196,83,0.34);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0, rgba(246,196,83,0.12), transparent 34%),
        rgba(20,29,45,0.92);
    box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

.hero-offer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.hero-offer-top span {
    color: var(--bonus-gold);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.hero-offer-top b {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(32,199,217,0.1);
    color: var(--bonus-cyan);
    font-size: 0.61rem;
    letter-spacing: 0.08em;
}

.hero-offer-value {
    display: grid;
    gap: 2px;
}

.hero-offer-value small {
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 700;
}

.hero-offer-value strong {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.hero-offer-value em {
    color: var(--bonus-gold);
    font-size: 0.75rem;
    font-style: normal;
}

.hero-offer-card ul {
    display: flex;
    gap: 8px;
    margin: 16px 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.hero-offer-card li {
    padding: 5px 9px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 0.67rem;
    font-weight: 700;
}

.hero-claim-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--accent), #f04450);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: 0 12px 32px rgba(232,50,60,0.22);
}

.hero-claim-button:hover {
    transform: translateY(-1px);
    background: linear-gradient(90deg, #f04450, var(--accent));
}

.hero-claim-button b {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    font-size: 1.05rem;
}

.hero-offer-card > p {
    margin: 10px 0 0;
    color: #94a3b8;
    font-size: 0.68rem;
    line-height: 1.45;
    text-align: center;
}

.featured-offer-visual img {
    object-position: center;
}

.mascot-hero-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 500px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 24px;
    background: #07101d;
    box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}

.mascot-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,16,29,0.96), transparent 42%);
    pointer-events: none;
}

.mascot-hero-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
}

.mascot-hero-card figcaption {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    background: rgba(8,13,22,0.76);
    backdrop-filter: blur(14px);
}

.mascot-hero-card figcaption strong {
    color: var(--bonus-gold);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mascot-hero-card figcaption span {
    color: #fff;
    font-size: 0.82rem;
    text-align: right;
}

.bonus-board-section,
.bonus-compare-section,
.mascot-check-section,
.bonus-maths-section,
.responsible-section,
.bonus-faq-section {
    padding: 82px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading.compact {
    margin-bottom: 28px;
}

.section-heading h2,
.mascot-check-grid h2,
.bonus-maths-grid h2,
.responsible-card h2 {
    margin: 8px 0 12px;
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 0;
    color: #64748b;
}

.bonus-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.bonus-offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    border: 1px solid #dfe5ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 50px rgba(15,23,42,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bonus-offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,50,60,0.42);
    box-shadow: 0 22px 60px rgba(15,23,42,0.11);
}

.bonus-offer-card.featured {
    border-color: rgba(246,196,83,0.75);
    background: linear-gradient(145deg, #fffdf7, #fff);
}

.bonus-offer-card.featured::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--bonus-gold), var(--accent));
}

.offer-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.offer-number {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 800;
}

.offer-label {
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff1f2;
    color: #b71924;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.offer-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--bonus-ink);
    color: var(--bonus-gold);
    font-size: 1rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.bonus-offer-card h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1.55rem;
}

.offer-value {
    margin: 7px 0 12px;
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 800;
}

.offer-value span {
    color: var(--bonus-gold);
}

.bonus-offer-card > p:not(.offer-value) {
    min-height: 54px;
    margin: 0 0 18px;
    color: #64748b;
    font-size: 0.93rem;
}

.bonus-offer-card ul {
    display: grid;
    gap: 7px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.bonus-offer-card li {
    position: relative;
    padding-left: 20px;
    color: #475569;
    font-size: 0.86rem;
}

.bonus-offer-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 900;
}

.bonus-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: auto;
    border-radius: 7px;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.035em;
}

.bonus-card-cta:hover {
    background: var(--accent-hover);
}

.bonus-offer-card small {
    margin-top: 10px;
    color: #94a3b8;
    font-size: 0.69rem;
    text-align: center;
}

.bonus-disclosure {
    max-width: 880px;
    margin: 22px auto 0;
    color: #64748b;
    font-size: 0.78rem;
    text-align: center;
}

.bonus-compare-section {
    background: #fff;
}

.bonus-compare-table th:first-child,
.bonus-compare-table td:first-child {
    white-space: nowrap;
}

.mascot-check-section {
    color: #fff;
    background:
        radial-gradient(circle at 12% 50%, rgba(32,199,217,0.13), transparent 28%),
        linear-gradient(135deg, var(--bonus-ink), #172235);
}

.mascot-check-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: center;
    gap: 46px;
}

.mascot-mini {
    position: relative;
    overflow: hidden;
    height: 320px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    background: #050b13;
}

.mascot-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}

.mascot-mini span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 9px;
    border-radius: 5px;
    background: var(--bonus-gold);
    color: #111827;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.mascot-check-grid h2 {
    max-width: 760px;
    color: #fff;
}

.ink-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.ink-check-grid > div {
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.045);
}

.ink-check-grid strong {
    color: var(--bonus-gold);
}

.ink-check-grid p {
    margin: 4px 0 0;
    color: #cbd5e1;
    font-size: 0.86rem;
}

.bonus-maths-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: center;
    gap: 64px;
}

.bonus-maths-grid p {
    color: #64748b;
}

.text-link {
    color: #b71924;
    font-weight: 800;
}

.math-card {
    display: grid;
    place-items: center;
    padding: 36px 24px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(145deg, var(--bonus-ink), #1d2a40);
    box-shadow: 0 24px 70px rgba(15,23,42,0.18);
}

.math-card span {
    color: #cbd5e1;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.math-card strong {
    margin: 8px 0 3px;
    color: var(--bonus-gold);
    font-size: 2.6rem;
}

.math-card b {
    margin-top: 16px;
    color: #fff;
    font-size: 2.15rem;
}

.math-card small {
    color: var(--bonus-cyan);
}

.responsible-section {
    padding-top: 0;
}

.responsible-card {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    gap: 50px;
    padding: 40px;
    border: 1px solid #dce3ec;
    border-radius: 20px;
    background: #fff;
}

.responsible-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.responsible-card p {
    margin-bottom: 0;
    color: #64748b;
}

.responsible-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.responsible-points span {
    display: grid;
    min-height: 64px;
    place-items: center;
    padding: 8px;
    border-radius: 9px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.77rem;
    font-weight: 800;
    text-align: center;
}

.bonus-faq-section {
    background: #fff;
}

.bonus-faq-section .accordion {
    max-width: 900px;
    margin: 0 auto;
}

.bonus-final-cta {
    padding: 86px 0;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0, rgba(246,196,83,0.15), transparent 34%),
        linear-gradient(135deg, #0b111d, #1a2231);
}

.bonus-final-cta span {
    color: var(--bonus-gold);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.bonus-final-cta h2 {
    max-width: 760px;
    margin: 10px auto;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
}

.bonus-final-cta p {
    max-width: 680px;
    margin: 0 auto;
    color: #94a3b8;
}

@media (max-width: 980px) {
    .bonus-hero-grid {
        grid-template-columns: 1fr;
    }
    .bonus-hero-copy {
        text-align: center;
    }
    .bonus-hero-copy > p {
        margin-inline: auto;
    }
    .bonus-hero-actions,
    .bonus-proof {
        justify-content: center;
    }
    .mascot-hero-card {
        min-height: 440px;
    }
    .mascot-check-grid {
        grid-template-columns: 220px 1fr;
    }
    .bonus-maths-grid {
        grid-template-columns: 1fr 300px;
        gap: 36px;
    }
}

@media (max-width: 760px) {
    .bonus-hero {
        padding: 48px 0;
    }
    .bonus-hero-grid {
        gap: 32px;
        width: auto;
    }
    .bonus-hero-copy h1 {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
        overflow-wrap: anywhere;
    }
    .mascot-hero-card {
        min-height: 380px;
        border-radius: 18px;
    }
    .bonus-card-grid,
    .ink-check-grid,
    .responsible-card,
    .bonus-maths-grid {
        grid-template-columns: 1fr;
    }
    .mascot-check-grid {
        grid-template-columns: 1fr;
    }
    .mascot-mini {
        width: min(100%, 360px);
        margin-inline: auto;
    }
    .bonus-board-section,
    .bonus-compare-section,
    .mascot-check-section,
    .bonus-maths-section,
    .responsible-section,
    .bonus-faq-section {
        padding: 60px 0;
    }
    .responsible-section {
        padding-top: 0;
    }
    .responsible-card {
        gap: 24px;
        padding: 28px 22px;
    }
}

@media (max-width: 520px) {
    .bonus-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .bonus-hero-actions a {
        width: auto;
    }
    .mascot-hero-card {
        min-height: 330px;
    }
    .mascot-hero-card figcaption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: grid;
        gap: 3px;
    }
    .mascot-hero-card figcaption span {
        text-align: left;
    }
    .bonus-offer-card {
        padding: 22px;
    }
    .responsible-points {
        grid-template-columns: 1fr;
    }
    .bonus-compare-table {
        min-width: 720px;
    }
    .hero-offer-card {
        padding: 16px;
        text-align: left;
    }
    .hero-offer-card ul {
        display: grid;
        gap: 6px;
    }
    .hero-offer-card li {
        border-radius: 7px;
    }
}

@media (max-width: 720px) {
    .mobile-sticky-cta {
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 66px;
        padding: 8px 14px max(8px, env(safe-area-inset-bottom));
        border: 0;
        border-top: 1px solid rgba(255,255,255,0.12);
        border-radius: 0;
        background:
            linear-gradient(90deg, rgba(232,50,60,0.12), transparent 38%),
            rgba(12,19,32,0.98);
        box-shadow: 0 -12px 36px rgba(0,0,0,0.3);
    }
    .mobile-sticky-cta::before {
        content: '';
        position: absolute;
        inset: 0 0 auto;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--bonus-gold, #f6c453), var(--bonus-cyan, #20c7d9));
    }
    .mobile-sticky-cta > span {
        color: #cbd5e1;
        font-size: 0.72rem;
    }
    .mobile-sticky-cta > strong {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 42px;
        padding: 0 14px;
        border-radius: 7px;
        background: var(--accent);
        color: #fff;
        font-size: 0.72rem;
        box-shadow: 0 8px 22px rgba(232,50,60,0.2);
    }
    .mobile-sticky-cta > strong i {
        font-size: 0.95rem;
        font-style: normal;
    }
    .sticky-offer-copy {
        display: flex;
        align-items: center;
        gap: 9px;
    }
    .sticky-offer-copy > b {
        display: grid;
        width: 36px;
        height: 36px;
        place-items: center;
        border-radius: 10px;
        background: linear-gradient(145deg, var(--accent), #a91621);
        color: #fff;
        font-size: 0.78rem;
    }
    .sticky-offer-copy em {
        display: grid;
        color: #fff;
        font-size: 0.75rem;
        font-style: normal;
        font-weight: 800;
        line-height: 1.2;
    }
    .sticky-offer-copy small {
        margin-top: 3px;
        color: #94a3b8;
        font-size: 0.59rem;
        font-weight: 600;
    }
}
/* ===== END BONUS-FIRST LANDING PAGE ===== */
