        /* ================================================ */
        /* ROOT VARIABLES — Lemon Dark Teal + Gold          */
        /* ================================================ */
        :root {
            --primary: #ffd36c;
            --primary-dark: #e6b840;
            --primary-glow: rgba(255, 211, 108, 0.15);
            --dark:    #002050;          /* body bg — темно-синій */
            --surface: #003266;          /* основні блоки — #003266 */
            --surface2: #001f40;         /* темніші блоки */
            --surface3: #001530;         /* найтемніші */
            --border: rgba(255,255,255,0.08);
            --border-light: rgba(255, 211, 108, 0.2);
            --light: #f0f4f3;
            --text: #d0dff0;
            --text-muted: #90aac8;
            --accent: #ffd36c;
            --green: #4ecdc4;
            --brand-line: 3px;
        }

        /* ================================================ */
        /* RESET & BASE                                      */
        /* ================================================ */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        h1, h2, h3, h4, h5, h6, a, button, input, textarea, select {
            font-family: 'Inter', sans-serif;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #002050;
            color: var(--text);
            line-height: 1.6;
            border-top: var(--brand-line) solid var(--primary);
        }

        /* Щоб контент був поверх фонового SVG */
        .header,
        .main,
        .sticky-cta,
        .scroll-to-top {
            position: relative;
            z-index: 1;
        }

        /* ================================================ */
        /* HEADER — точно як guidebook.mostbet.com           */
        /* ================================================ */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.4);
        }

        /* === header--row: верхній рядок === */
        .header--row {
            background: linear-gradient(rgb(0, 50, 102), rgb(10, 80, 156));
        }

        .header--row-inner {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
            height: 62px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Лого */
        .header--logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .header--logo img { display: block; }

        /* Права частина */
        .header--right {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        /* POBIERZ + іконки */
        .hdr-btn-pobierz {
            gap: 6px;
        }

        .hdr-btn-pobierz svg {
            flex-shrink: 0;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .hdr-btn-pobierz:hover svg { opacity: 1; }

        /* button-border: Zaloguj się */
        .button-border {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 38px;
            padding: 0 20px;
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 30px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            transition: border-color 0.2s, background 0.2s;
            cursor: pointer;
            background: transparent;
        }

        .button-border:hover {
            border-color: #fff;
            background: rgba(255,255,255,0.08);
            color: #fff;
        }

        /* button-orange: Zarejestruj się */
        .button-orange {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 38px;
            padding: 0 20px;
            background: #f26522;
            border-radius: 30px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.18s;
            cursor: pointer;
            border: none;
        }

        .button-orange:hover {
            background: #d4561a;
            color: #fff;
        }

        /* Бургер-кнопка */
        .header--menu-btn {
            display: none;
            width: 30px;
            height: 22px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            position: relative;
            z-index: 1001;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }

        .header--menu-btn span,
        .header--menu-btn::before,
        .header--menu-btn::after {
            content: '';
            display: block;
            width: 26px;
            height: 2px;
            background: rgba(255,255,255,0.85);
            border-radius: 2px;
            transition: 0.3s;
        }

        .header--menu-btn span { width: 26px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 2px; }

        .header--menu-btn.active span { opacity: 0; }
        .header--menu-btn.active::before { transform: rotate(45deg) translate(7px, 7px); }
        .header--menu-btn.active::after  { transform: rotate(-45deg) translate(7px, -7px); }

        /* === header--bottom: navbar === */
        .header--bottom {
            background: rgb(10, 80, 156);
            padding: 6px 0 7px;
        }

        .header--menu-wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
        }

        .header--nav-list {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 4px 8px;
            background: rgba(255,255,255,0.08);
            border-radius: 30px;
            gap: 0;
        }

        .header--nav-list li a {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            height: 34px;
            padding: 0 13px;
            color: rgba(255,255,255,0.82);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 20px;
            white-space: nowrap;
            transition: color 0.15s, background 0.15s;
        }

        .header--nav-list li a:hover {
            color: #fff;
            background: rgba(255,255,255,0.1);
        }

        /* FontAwesome-подібні іконки через SVG-спрайт — замінюємо на Unicode символи */
        .nav-icon { font-style: normal; font-size: 0.78rem; opacity: 0.7; }
        .nav-icon--star::before   { content: '★'; }
        .nav-icon--reg::before    { content: '📋'; font-size: 0.72rem; }
        .nav-icon--user::before   { content: '👤'; font-size: 0.72rem; }
        .nav-icon--mobile::before { content: '📱'; font-size: 0.72rem; }
        .nav-icon--casino::before { content: '🎰'; font-size: 0.72rem; }
        .nav-icon--bonus::before  { content: '🏷'; font-size: 0.72rem; }

        /* === MOBILE MENU === */
        .mobile-menu {
            position: fixed;
            top: 62px;
            left: 0;
            width: 100%;
            background: #0d1e3d;
            border-top: 1px solid rgba(255,255,255,0.06);
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease;
            display: flex;
            flex-direction: column;
            z-index: 998;
            box-shadow: 0 6px 20px rgba(0,0,0,0.45);
        }

        .mobile-menu.open {
            height: auto;
            max-height: 480px;
            padding: 6px 20px 18px;
        }

        .mobile-menu a {
            color: rgba(255,255,255,0.82);
            text-decoration: none;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            font-weight: 500;
            font-size: 0.92rem;
            transition: color 0.2s;
        }

        .mobile-menu a:hover { color: #fff; }

        .mobile-menu-btns {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 14px;
        }

        .mobile-menu-btns .button-border,
        .mobile-menu-btns .button-orange {
            width: 100%;
            height: 44px;
            border-radius: 8px;
            font-size: 0.88rem;
        }

        /* === RESPONSIVE === */
        @media (max-width: 860px) {
            .header--bottom    { display: none; }
            .hdr-btn-pobierz { display: none; }
            .header--right .button-border  { display: none; }
            .header--right .button-orange  { display: none; }
            .header--menu-btn  { display: flex; }
        }

        @media (min-width: 861px) {
            .header--menu-btn { display: none; }
        }

        @media (max-width: 1060px) and (min-width: 861px) {
            .button-border, .button-orange { padding: 0 12px; font-size: 0.74rem; }
            .header--nav-list li a { padding: 0 9px; font-size: 0.74rem; }
        }

        /* legacy — прибираємо старі класи */
        .header-inner        { display: none; }
        .header-right        { display: none; }
        .header-mobile-title { display: none; }
        .main-nav            { display: none; }

        /* ================================================ */
        /* HERO                                              */
        /* ================================================ */
        /* Hero — загальна обгортка (прозора, фон задається дочірніми блоками) */
        .hero {
            background: transparent;
            padding: 0;
        }

        /* Блок з h1 + банером — темніший синій */
        .hero-main-block {
            background: #002a55;
        }

        /* Двоколонковий рядок: ліво + право */
        .hero-row-wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 40px 20px 32px;
            display: flex;
            align-items: center;
            gap: 32px;
        }

        /* ЛІВО: subtitle + h1 + кнопка */
        .hero-left {
            flex: 1 1 0;
            min-width: 0;
        }

        /* ПРАВО: банер */
        .hero-right {
            flex: 0 0 auto;
            width: 48%;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .hero-right a { display: block; }

        .hero-right img {
            width: 100%;
            height: auto;
            display: block;
            filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
        }

        /* Subtitle над h1 — синьо-блакитний як у конкурента */
        .hero-subtitle {
            color: #428cdc;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        /* Блок опису — ще темніший фон */
        .hero-desc {
            background: #001932;
            border-top: 1px solid rgba(255,255,255,0.07);
        }

        .hero-container {
            max-width: 960px;
            margin: 0 auto;
            padding: 28px 20px 36px;
        }

        .hero h1 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            color: #ffffff;
            margin-bottom: 24px;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: 0.01em;
        }

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

        .hero-lead {
            max-width: 100%;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 18px;
            margin-bottom: 28px;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .hero-meta .meta-date { color: var(--text-muted); }
        .hero-meta .meta-sep { color: var(--border); }
        .hero-meta .meta-author-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .hero-meta .meta-author-link:hover { text-decoration: underline; }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.08);
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 4px;
        }

        .hero-stat {
            background: #001932;
            padding: 16px 20px;
            text-align: center;
            transition: background 0.2s;
            text-decoration: none;
            display: block;
        }

        .hero-stat:hover { background: #002a55; }

        .hero-stat__value {
            display: block;
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            font-weight: 700;
            color: #f26522;
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-stat__label {
            display: block;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        @media (max-width: 640px) {
            .hero-stats { grid-template-columns: repeat(3, 1fr); }
            .hero-stat__value { font-size: 1.2rem; }
            .hero-stat__label { font-size: 0.68rem; }
        }

        /* ===== МОБІЛЬНА АДАПТАЦІЯ HERO ===== */
        @media (max-width: 768px) {
            .hero-row-wrap {
                flex-direction: column;
                padding: 28px 20px 24px;
                gap: 20px;
            }

            .hero-left {
                width: 100%;
                text-align: center;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .hero-right {
                width: 100%;
                justify-content: center;
            }

            .hero-right img {
                max-width: 340px;
                margin: 0 auto;
            }

            .hero h1 {
                font-size: 1.4rem;
            }

            .hero-container {
                padding: 20px 16px 28px;
            }
        }

        /* ================================================ */
        /* APP DOWNLOAD BLOCK (Lemon Casino)                 */
        /* ================================================ */
        .lc-app-block {
            background: transparent;
            border-top: none;
            border-bottom: none;
            padding: 20px 0;
        }

        .lc-app-block--inline {
            background: transparent;
            border-top: none;
            border-bottom: none;
            padding: 0 0 24px;
        }

        .lc-app-block--inline .lc-app-block__inner {
            background: var(--surface);
            border: 1px solid var(--border);
        }

        .lc-app-block__inner {
            max-width: 960px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 28px;
            background: #002244;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            padding: 22px 28px;
        }

        .lc-app-block__logo img {
            border-radius: 10px;
            width: 250px;
            height: 250px;
            object-fit: contain;
            display: block;
        }

        .lc-app-block__right {
            flex: 1;
        }

        .lc-app-block__name {
            font-size: 1rem;
            font-weight: 800;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
        }

        .lc-app-block__stats {
            list-style: none;
            display: flex;
            gap: 20px;
            margin-bottom: 18px;
            flex-wrap: wrap;
            padding: 0;
        }

        .lc-app-block__stats li {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        .lc-app-block__stats span {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
        }

        .lc-app-block__stats small {
            font-size: 0.68rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .lc-app-block__buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .lc-app-btn {
            display: inline-flex;
            align-items: center;
            background: #e0e0e0;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 12px;
            text-decoration: none;
            transition: border-color 0.2s, background 0.2s;
        }

        .lc-app-btn img {
            display: block;
            width: 135px;
            height: 40px;
        }

        .lc-app-btn:hover {
            border-color: var(--primary);
            background: var(--surface);
        }

        @media (max-width: 640px) {
            .lc-app-block__inner {
                flex-direction: column;
                align-items: center;
                padding: 18px;
                gap: 16px;
            }
            .lc-app-block__right {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .lc-app-block__stats {
                gap: 14px;
                justify-content: center;
            }
            .lc-app-block__buttons {
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }
        }

        .hero p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 15px;
            text-align: justify;
        }

        .author-box, .info-box, .author-avatar, .author-info,
        .author-label, .author-name, .verified-badge,
        .info-content, .info-label, .info-value { display: none; }

        @media (max-width: 768px) {
            .hero h1 { font-size: 1.3rem; }
            .hero-container { padding: 28px 16px 0; }
        }

        /* ================================================ */
        /* MAIN WRAPPER                                      */
        /* ================================================ */
        .main {
            background-color: #003266;
        }

        .article { background: transparent; }

        /* ================================================ */
        /* LISTING                                           */
        /* ================================================ */
        .listing {
            padding: 32px 20px 20px;
            max-width: 960px;
            margin: 0 auto;
        }

        .listing h2 {
            margin-top: 0;
            margin-bottom: 24px;
            font-size: 1.2rem;
            color: var(--light);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .listing h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 1.4em;
            background: var(--primary);
            border-radius: 4px;
            flex-shrink: 0;
        }

        /* ================================================ */
        /* CASINO CARDS                                      */
        /* ================================================ */
        .casino-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 14px;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.25s, border-color 0.25s, transform 0.15s;
        }

        .casino-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            opacity: 0;
            transition: opacity 0.25s;
        }

        .casino-card:hover {
            box-shadow: 0 6px 28px rgba(255, 211, 108, 0.1);
            border-color: rgba(255, 211, 108, 0.35);
            transform: translateY(-1px);
        }

        .casino-card:hover::before {
            opacity: 1;
        }

        .card-main {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 18px 14px 18px;
        }

        .casino-number {
            position: absolute;
            top: 0;
            left: 0;
            width: 28px;
            height: 28px;
            background: var(--surface2);
            color: var(--primary);
            border-bottom-right-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            z-index: 2;
        }

        .rating-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(135deg, #ffd36c, #e6b840);
            color: #1b2827;
            font-size: 0.78rem;
            font-weight: 800;
            padding: 4px 10px;
            border-bottom-left-radius: 8px;
            letter-spacing: 0.02em;
        }

        .rating-badge.high,
        .rating-badge.top { background: linear-gradient(135deg, #ffd36c, #e6b840); color: #1b2827; }

        .logo-box {
            width: 200px;
            min-width: 200px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: transparent;
        }

        .logo-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .casino-name-label {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 5px;
        }

        .bonus-center {
            flex: 1;
            min-width: 0;
        }

        .bonus-text {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--light);
            line-height: 1.3;
        }

        .cta-section { flex-shrink: 0; }

        .btn-casino {
            background: #f26522;
            color: #fff;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
            white-space: nowrap;
            display: inline-block;
            box-shadow: 0 2px 12px rgba(242, 101, 34, 0.3);
            letter-spacing: 0.01em;
            text-transform: uppercase;
        }

        .btn-casino:hover {
            background: #d4561a;
            transform: translateY(-1px);
            box-shadow: 0 5px 20px rgba(242, 101, 34, 0.45);
        }

        .card-footer {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 8px 16px 10px;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
        }

        .recenzja-link {
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 3px;
            font-weight: 500;
            font-size: 0.82rem;
        }

        .recenzja-link:hover { text-decoration: underline; }
        .recenzja-link svg { width: 12px; height: 12px; fill: var(--primary); }

        @media (max-width: 640px) {
            .card-main { flex-wrap: wrap; gap: 10px; }
            .logo-box { width: 90px; min-width: 90px; height: 60px; }
            .bonus-center { order: 2; width: 100%; }
            .cta-section { order: 3; width: 100%; }
            .btn-casino { display: block; text-align: center; width: 100%; }
        }

        /* ===== EXPANDED CARD ===== */
        .casino-card--expanded .card-footer { justify-content: space-between; }

        .responsible-gaming {
            font-size: 0.75rem;
            color: var(--text-muted);
            opacity: 0.55;
        }

        .card-details {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 0;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
        }

        .card-detail-item {
            display: flex;
            align-items: center;
            gap: 6px;
            width: 50%;
            font-size: 0.82rem;
            padding: 3px 0;
        }

        .card-detail-item:last-child:nth-child(odd) { width: 100%; }

        .detail-svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            stroke: var(--text-muted);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0.65;
        }

        .detail-label { color: var(--text-muted); white-space: nowrap; }
        .detail-label::after { content: ':'; }
        .detail-value { color: var(--light); font-weight: 600; margin-left: 2px; }
        .detail-value--green { color: var(--green); }
        .detail-value--muted { color: var(--text-muted); }

        @media (max-width: 640px) {
            .casino-card--expanded .card-main { flex-direction: column; align-items: stretch; }
            .casino-card--expanded .logo-box { width: 100%; min-width: unset; height: 100px; }
            .casino-card--expanded .logo-box img { width: auto; height: 100%; max-width: 160px; margin: 0 auto; }
            .card-details { flex-direction: column; gap: 5px; }
            .card-detail-item { width: 100%; }
        }

        /* ================================================ */
        /* CONTENT SECTIONS                                  */
        /* ================================================ */
        .content-section {
            padding: 36px 20px;
            max-width: 960px;
            margin: 0 auto;
        }

        .content-section:nth-of-type(even) {
            background: transparent;
        }

        .section-wrap {
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-wrap + .section-wrap {
            border-top: none;
        }

        .content-section h2 {
            margin-top: 28px;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--light);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .content-section h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 1.4em;
            background: var(--primary);
            border-radius: 4px;
            flex-shrink: 0;
        }

        .content-section h2:first-of-type { margin-top: 0; }

        .content-section h3 {
            margin-top: 22px;
            margin-bottom: 12px;
            font-size: 1.0rem;
            font-weight: 700;
            color: var(--light);
            padding-left: 14px;
            border-left: 3px solid var(--primary-dark);
            border-radius: 0 0 0 2px;
        }

        .content-section h4 {
            margin-top: 18px;
            margin-bottom: 10px;
            font-size: 1.00rem;
            font-weight: 700;
            color: var(--light);
        }

        .content-section p {
            margin-bottom: 14px;
            line-height: 1.75;
            text-align: justify;
            color: var(--text);
        }

        /* ================================================ */
        /* IMAGES                                            */
        /* ================================================ */
        .image-block { text-align: center; margin: 28px 0; }

        .image-block img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .image-block a { display: inline-block; }

        .image-block img:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(0,0,0,0.55);
        }

        .image-caption {
            margin-top: 10px;
            font-size: 0.88rem;
            color: var(--text-muted);
            font-style: italic;
        }

        /* ================================================ */
        /* FEATURE GRID                                      */
        /* ================================================ */
        .feature-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 24px 0; }
        @media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }

        .feature-item {
            background: var(--surface2);
            border: 1px solid var(--border);
            padding: 22px;
            border-radius: 12px;
            transition: border-color 0.2s, background 0.2s;
        }

        .feature-item:hover {
            border-color: rgba(255, 211, 108, 0.3);
            background: #263835;
        }

        .feature-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .feature-header svg { width: 26px; height: 26px; fill: var(--primary); flex-shrink: 0; }
        .feature-item h3 { font-size: 1.05rem; color: var(--light); margin: 0; font-weight: 700; border: none; padding: 0; }

        /* ================================================ */
        /* TABLE                                             */
        /* ================================================ */
        .table-wrapper { overflow-x: auto; margin: 20px 0; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }

        table { width: 100%; border-collapse: collapse; min-width: 560px; }

        th {
            background: #002a55;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 2px solid #f26522;
        }

        td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            text-align: left;
            color: rgba(255,255,255,0.88);
            background: #001932;
            font-size: 0.93rem;
        }

        tr:last-child td { border-bottom: none; }
        tr:nth-child(even) td { background: #002244; }
        tr:hover td { background: #002a55; }

        /* ================================================ */
        /* PROS / CONS                                       */
        /* ================================================ */
        .pros-cons { display: grid; grid-template-columns: 1fr; gap: 16px; }
        @media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }

        .pc-box { padding: 22px; border-radius: 12px; }
        .pros { background: rgba(66,140,220,0.07); border: 1px solid rgba(66,140,220,0.25); }
        .cons { background: rgba(248,81,73,0.07); border: 1px solid rgba(248,81,73,0.22); }

        /* ================================================ */
        /* FAQ                                               */
        /* ================================================ */
        .faq-item {
            background: #001932;
            border: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 10px;
            padding: 18px 20px;
            border-radius: 12px;
            transition: border-color 0.2s, background 0.2s;
        }

        .faq-item:hover {
            border-color: rgba(242, 101, 34, 0.35);
            background: #002244;
        }

        .faq-q {
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
            font-size: 0.97rem;
        }

        .faq-a { color: var(--text); font-size: 0.93rem; line-height: 1.7; }

        /* ================================================ */
        /* LINKS                                             */
        /* ================================================ */
        .content-section a { color: var(--primary); transition: color 0.15s; }
        .content-section a:hover { color: var(--accent); }
        .content-section a.btn-casino,
        .content-section a.btn-casino:hover { color: #1a2726; }

        /* ================================================ */
        /* NAJLEPSZE TABLE                                   */
        /* ================================================ */
        .najlepsze-table { width: 100%; border-collapse: collapse; }
        .najlepsze-table tr { border-bottom: 1px solid var(--border); }
        .najlepsze-table tr:last-child { border-bottom: none; }
        .najlepsze-table td { padding: 11px 10px; vertical-align: middle; background: transparent; }
        .najlepsze-table td:first-child { color: var(--text); font-size: 0.93rem; }
        .najlepsze-table td:last-child { text-align: right; white-space: nowrap; width: 110px; }

        /* ================================================ */
        /* H3 + BUTTON ROW                                   */
        /* ================================================ */
        .h3-with-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin: 20px 0 8px;
            flex-wrap: wrap;
        }

        .h3-with-btn h3 { margin: 0; flex: 1; }

        /* ================================================ */
        /* CONTENT LIST                                      */
        /* ================================================ */
        .content-list {
            list-style: none;
            padding: 0;
            margin: 12px 0 16px;
        }

        .content-list li {
            position: relative;
            padding: 8px 0 8px 22px;
            color: var(--text);
            line-height: 1.65;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            font-size: 0.95rem;
        }

        .content-list li:last-child { border-bottom: none; }

        .content-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #f26522;
            opacity: 1;
        }

        ol.content-list {
            list-style: none;
            counter-reset: content-counter;
            padding: 0;
            margin: 12px 0 16px;
        }

        ol.content-list li {
            counter-increment: content-counter;
            padding-left: 32px;
        }

        ol.content-list li::before {
            content: counter(content-counter);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: transparent;
            border: 1.5px solid #f26522;
            color: #f26522;
            font-size: 11px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            top: 12px;
            transform: none;
        }

        /* ================================================ */
        /* INFO SECTION                                      */
        /* ================================================ */
        .info-section-wrap {
            background-color: #001f40;
            background-image: url('/img/online-casino-pl.svg');
            background-repeat: no-repeat;
            background-position: center top;
            background-size: cover;
            background-attachment: fixed;
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            margin-bottom: 40px;
        }

        .info-section {
            max-width: 960px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .info-section h2 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--light);
            letter-spacing: 0.02em;
            line-height: 1.2;
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
            margin-bottom: 20px;
            margin-top: 36px;
        }

        .info-section h2:first-child { margin-top: 0; }

        .info-section h3 {
            font-size: 1rem;
            font-weight: 800;
            color: var(--light);
            font-family: 'Inter', sans-serif;
            margin-top: 28px;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 1.2;
        }

        .info-section p {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
            line-height: 1.8;
            font-family: 'Inter', sans-serif;
            text-align: justify;
            margin-bottom: 14px;
        }

        .info-section .table-wrapper { margin: 20px 0; }

        .info-section .pros-cons { margin: 24px 0; }

        .info-section .content-list { margin: 12px 0 20px; }

        .info-section .faq-item { margin-bottom: 10px; }

        /* ================================================ */
        /* GAME SECTIONS                                     */
        /* ================================================ */
        .games-wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 8px 20px 32px;
        }

        .games-section {
            margin-bottom: 40px;
        }

        .games-section__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }

        .games-section__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .games-section__icon svg {
            width: 22px;
            height: 22px;
        }

        .games-section__title {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--light);
            letter-spacing: 0.02em;
            line-height: 1.2;
            margin: 0;
            flex: 1;
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
        }

        .games-section__more {
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: none;
            padding: 5px 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            transition: color 0.2s, border-color 0.2s, background 0.2s;
            white-space: nowrap;
            text-transform: none;
            letter-spacing: 0;
        }

        .games-section__more:hover {
            color: var(--primary);
            border-color: rgba(255, 211, 108, 0.4);
            background: rgba(255, 211, 108, 0.05);
        }

        /* Grid */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
        }

        @media (max-width: 900px) {
            .games-grid { grid-template-columns: repeat(4, 1fr); }
        }

        @media (max-width: 600px) {
            .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
        }

        @media (max-width: 380px) {
            .games-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* Card */
        .game-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: inherit;
            gap: 8px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
        }

        .game-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 12px;
            display: block;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            /* broken image fallback */
            background: var(--surface2);
            font-size: 0;
            color: transparent;
        }

        .game-card:hover img {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 8px 22px rgba(0,0,0,0.5);
        }

        .game-card__name {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.8;
            transition: color 0.2s;
            padding: 0 2px;
            text-transform: none;
            letter-spacing: normal;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
        }

        .game-card:hover .game-card__name {
            color: var(--primary);
        }

        /* ================================================ */
        /* FOOTER                                            */
        /* ================================================ */
        .footer {
            background: var(--surface3);
            color: var(--text);
            padding: 50px 20px 0;
            border-top: 1px solid var(--border);
        }

        .footer-inner {
            max-width: 960px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border);
        }

        @media (max-width: 768px) {
            .footer-inner { grid-template-columns: 1fr; gap: 30px; }
        }

        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 14px;
            letter-spacing: 0.04em;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 320px;
        }

        .footer-legal {
            font-size: 0.72rem !important;
            color: var(--text-muted);
            line-height: 1.55;
            max-width: 380px !important;
            opacity: 0.6;
            margin-top: 10px;
        }

        .footer-col h4 {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
        }

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

        .footer-regulators {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
        }

        .footer-regulators img {
            height: 38px;
            width: auto;
            opacity: 0.45;
            transition: opacity 0.3s, transform 0.3s;
            filter: grayscale(100%);
        }

        .footer-regulators a:hover img,
        .footer-regulators img:hover {
            opacity: 1;
            transform: translateY(-2px);
            filter: grayscale(0%);
        }

        .footer-bottom {
            max-width: 960px;
            margin: 0 auto;
            padding: 16px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

        .footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.78rem;
            transition: color 0.2s;
        }

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

        @media (max-width: 768px) {
            .footer-regulators { gap: 14px; }
            .footer-regulators img { height: 30px; }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
        }

        /* ================================================ */
        /* SCROLL TO TOP                                     */
        /* ================================================ */
        .scroll-to-top {
            position: fixed;
            bottom: 90px;
            right: 28px;
            width: 46px;
            height: 46px;
            background: #003266;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.25s;
            z-index: 999;
        }

        .scroll-to-top:hover {
            background: #f26522;
            border-color: #f26522;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
        }

        .scroll-to-top.show { display: flex; }
        .scroll-to-top svg { fill: #fff; transition: fill 0.25s; }
        .scroll-to-top:hover svg { fill: #fff; }

        /* ================================================ */
        /* BREADCRUMBS                                       */
        /* ================================================ */
        .breadcrumbs {
            max-width: 960px;
            margin: 0 auto;
            padding: 14px 20px 0;
        }

        .breadcrumbs-list {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            font-size: 0.82rem;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumbs-list a { color: var(--primary); text-decoration: none; }
        .breadcrumbs-list a:hover { text-decoration: underline; }
        .breadcrumbs-sep { color: var(--border); }
        .breadcrumbs-current { color: var(--text-muted); }

        /* ================================================ */
        /* INFO PAGE                                         */
        /* ================================================ */
        .info-page-h1 {
            font-size: 0.95rem;
            font-weight: 400;
            color: var(--text-muted);
            text-align: center;
            padding: 8px 24px 0;
            margin: 0;
            max-width: 960px;
            margin-left: auto;
            margin-right: auto;
        }

        .info-hero {
            padding: 40px 24px;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            text-align: center;
        }

        .info-hero h2 {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 800;
            margin-bottom: 14px;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .info-hero p {
            max-width: 620px;
            margin: 0 auto;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
        }

        .cs-wrap {
            border-top: 1px solid var(--border);
            background: var(--surface2);
        }

        .cs-wrap.alt { background: var(--surface); }

        .cs-section {
            padding: 36px 24px;
            max-width: 960px;
            margin: 0 auto;
        }

        .cs-section h2 {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 700;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cs-section h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 1.4em;
            background: var(--primary);
            border-radius: 4px;
            flex-shrink: 0;
        }

        .cs-section h3 {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 700;
            margin: 18px 0 7px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .cs-section h4 {
            font-size: 0.97rem;
            color: var(--primary);
            font-weight: 700;
            margin: 14px 0 5px;
        }

        .cs-section p {
            color: var(--text);
            line-height: 1.75;
            margin-bottom: 13px;
            font-size: 0.95rem;
        }

        .cs-section a { color: var(--primary); font-weight: 700; text-decoration: none; }
        .cs-section a:hover { text-decoration: underline; }

        /* Kontakt */
        .contact-wrapper {
            max-width: 960px;
            margin: 40px auto 60px;
            padding: 0 24px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 28px;
        }

        .info-sidebar { display: flex; flex-direction: column; gap: 18px; }

        .info-card {
            background: var(--surface);
            padding: 22px;
            border-radius: 12px;
            border: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .info-card .icon-box {
            background: var(--primary);
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-card .icon-box svg { stroke: #1a2726; }

        .info-card h3 { font-size: 0.97rem; margin-bottom: 5px; color: #fff; font-weight: 700; }
        .info-card p { color: var(--text); font-size: 0.88rem; line-height: 1.5; margin-bottom: 4px; }
        .info-card p:last-child { margin-bottom: 0; }
        .info-card a { color: var(--primary); text-decoration: none; }
        .info-card a:hover { text-decoration: underline; }

        .form-card {
            background: var(--surface);
            padding: 32px;
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .form-group { margin-bottom: 16px; }

        .form-group label {
            display: block;
            margin-bottom: 7px;
            font-weight: 600;
            font-size: 0.88rem;
            color: #fff;
        }

        .form-control {
            width: 100%;
            padding: 11px 14px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.93rem;
            background: var(--surface2);
            color: var(--text);
            transition: border-color 0.25s;
            outline: none;
        }

        .form-control:focus { border-color: var(--primary); }
        textarea.form-control { min-height: 130px; resize: vertical; }
        select.form-control { cursor: pointer; }

        .consent-text {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 14px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .consent-text input[type="checkbox"] {
            margin-top: 3px;
            flex-shrink: 0;
            accent-color: var(--primary);
        }

        .consent-text label { font-weight: 400; line-height: 1.5; }

        .btn-submit {
            background: #f26522;
            color: #fff;
            width: 100%;
            padding: 13px;
            border: none;
            border-radius: 30px;
            font-size: 0.97rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            cursor: pointer;
            transition: background 0.25s;
            margin-top: 8px;
        }

        .btn-submit:hover { background: #d4561a; }

        /* Newsletter */
        .newsletter-box {
            background: var(--surface2);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 38px 32px;
            text-align: center;
        }

        .newsletter-box h2 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-weight: 700;
            border: none;
            padding: 0;
            display: block;
        }

        .newsletter-box h2::before { display: none; }

        .newsletter-box p {
            color: var(--text-muted);
            font-size: 0.97rem;
            margin-bottom: 22px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--surface);
            color: var(--text);
            font-family: inherit;
            font-size: 0.93rem;
            outline: none;
            transition: border-color 0.25s;
        }

        .newsletter-input:focus { border-color: var(--primary); }

        .newsletter-btn {
            background: #f26522;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 12px 22px;
            font-weight: 700;
            font-size: 0.93rem;
            cursor: pointer;
            transition: background 0.25s;
            white-space: nowrap;
        }

        .newsletter-btn:hover { background: #d4561a; }
        .newsletter-success { display: none; margin-top: 14px; color: var(--green); font-weight: 600; }
        .newsletter-success.show { display: block; }

        .rg-callout {
            margin-top: 22px;
            padding: 18px 22px;
            background: rgba(255, 211, 108, 0.06);
            border-left: 3px solid var(--primary);
            border-radius: 0 8px 8px 0;
            color: var(--text);
            line-height: 1.7;
        }

        .rg-callout strong { color: #fff; font-size: 1rem; }

        @media (max-width: 700px) {
            .contact-grid { grid-template-columns: 1fr; }
            .form-card { padding: 22px; }
            .info-hero h2 { font-size: 1.1rem; }
            .newsletter-form { flex-direction: column; }
            .newsletter-box { padding: 26px 18px; }
            .cs-section { padding: 28px 18px; }
        }

        /* ================================================ */
        /* FLOATING TOC                                      */
        /* ================================================ */
        .ftoc {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9999;
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        .ftoc__btn {
            background: rgba(255, 211, 108, 0.5);
            color: #1a2726;
            width: 26px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 11px;
            user-select: none;
            transition: background .2s;
            flex-shrink: 0;
        }

        .ftoc__btn:hover { background: rgba(255, 211, 108, 0.85); }

        #toc-toggle:not(:checked) ~ .ftoc .ftoc__btn {
            background: rgba(255, 211, 108, 0.45);
        }

        .ftoc__panel {
            background: var(--surface);
            border: 1px solid var(--border);
            border-left: none;
            width: 0;
            overflow: hidden;
            transition: width .3s ease;
            order: -1;
        }

        #toc-toggle:checked ~ .ftoc .ftoc__panel { width: 260px; }
        #toc-toggle:checked ~ .ftoc .ftoc__btn { background: rgba(255, 211, 108, 0.9); }

        .ftoc__title {
            color: var(--text-muted);
            font-size: .72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 14px 7px;
            margin: 0;
            white-space: nowrap;
        }

        .ftoc__list {
            list-style: none;
            padding: 0 0 14px;
            margin: 0;
            max-height: 70vh;
            overflow-y: auto;
        }

        .ftoc__list li a {
            display: block;
            color: var(--text);
            text-decoration: none;
            font-size: .80rem;
            padding: 5px 14px;
            border-left: 2px solid transparent;
            white-space: normal;
            line-height: 1.4;
            transition: color 0.15s, border-color 0.15s, background 0.15s;
        }

        .ftoc__list li a:hover {
            color: var(--primary);
            border-left-color: var(--primary);
            background: rgba(255, 211, 108, .07);
        }

        @media (max-width: 768px) {
            #toc-toggle:checked ~ .ftoc .ftoc__panel { width: 210px; }
            .ftoc__list li a { font-size: .76rem; }
        }

        /* ================================================ */
        /* HERO BANNER                                       */
        /* ================================================ */
        .hero-banner {
            max-width: 960px;
            margin: 24px auto 0;
            padding: 0 20px;
        }

        .hero-banner img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
        }

        @media (max-width: 768px) {
            .hero-banner { padding: 0; margin-top: 18px; }
            .hero-banner img { border-radius: 0; }
        }

        /* ================================================ */
        /* BONUS NODEP BADGE                                 */
        /* ================================================ */
        .bonus-nodep {
            display: inline-flex;
            align-items: baseline;
            gap: 6px;
            background: rgba(255, 211, 108, 0.1);
            border: 1px solid rgba(255, 211, 108, 0.28);
            border-radius: 7px;
            padding: 6px 12px;
            margin-bottom: 10px;
        }
        .bonus-nodep__value {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.01em;
        }
        .bonus-nodep__label {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        /* Badges */
        .card-badge {
            display: inline-block;
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 2px 7px;
            border-radius: 4px;
            margin-left: 6px;
            vertical-align: middle;
            position: relative;
            top: -1px;
        }
        .card-badge--new  { background: #f59e0b; color: #1a0a00; }
        .card-badge--excl { background: #8b5cf6; color: #fff; }
        .card-badge--top  { background: #ef4444; color: #fff; }

        /* Kod */
        .kod-brak {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            border: 1px dashed var(--border);
            border-radius: 4px;
            padding: 2px 8px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .kod-box {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            border: 1px dashed rgba(255, 211, 108, 0.35);
            border-radius: 4px;
            padding: 2px 8px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent);
            background: rgba(255, 211, 108, 0.05);
            cursor: pointer;
            transition: background 0.15s;
            user-select: all;
        }
        .kod-box:hover { background: rgba(255, 211, 108, 0.14); }
        .kod-box svg { width: 11px; height: 11px; stroke: var(--accent); stroke-width: 2; fill: none; }

        /* Recenzja pod przyciskiem */
        .recenzja-link-cta {
            display: block;
            text-align: center;
            margin-top: 7px;
            font-size: 0.75rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .recenzja-link-cta:hover { text-decoration: underline; }

        /* Warunki */
        .card-terms {
            font-size: 0.72rem;
            color: var(--text-muted);
            line-height: 1.5;
            opacity: 0.7;
        }

        .casino-card--expanded .card-footer {
            justify-content: flex-start;
        }

        @media (max-width: 640px) {
            .cta-section { width: 100%; order: 3; }
            .recenzja-link-cta { margin-top: 6px; }
        }

        /* ================================================ */
        /* STICKY CTA BAR                                    */
        /* ================================================ */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9000;
            background: rgba(0, 25, 50, 0.82);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(242, 101, 34, 0.5);
            box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
            padding: 10px 20px;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sticky-cta.visible {
            transform: translateY(0);
        }

        .sticky-cta__inner {
            max-width: 960px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .sticky-cta__name {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .sticky-cta__bonus {
            flex: 1;
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
            text-align: center;
            letter-spacing: 0.02em;
        }

        .sticky-cta__btn {
            background: #f26522;
            color: #fff;
            padding: 10px 26px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
            box-shadow: 0 2px 16px rgba(242, 101, 34, 0.4);
        }

        .sticky-cta__btn:hover {
            background: #d4561a;
            box-shadow: 0 4px 22px rgba(242, 101, 34, 0.6);
            transform: translateY(-1px);
        }

        @media (max-width: 600px) {
            .sticky-cta__name { display: none; }
            .sticky-cta__bonus { text-align: left; font-size: 0.82rem; }
            .sticky-cta__btn { padding: 9px 16px; font-size: 0.8rem; }
        }
        /* ================================================ */
        /* INLINE CTA BUTTON                                 */
        /* ================================================ */
        @keyframes cta-shimmer {
            0%   { left: -60%; }
            60%, 100% { left: 130%; }
        }

        .cta-btn-wrap {
            margin: 28px 0 8px;
            text-align: center;
        }

        .cta-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            overflow: hidden;
            background: #f26522;
            color: #fff;
            padding: 13px 32px;
            border-radius: 30px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-decoration: none;
            box-shadow: 0 2px 14px rgba(242, 101, 34, 0.35);
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
        }

        .cta-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -60%;
            width: 40%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
            animation: cta-shimmer 3.2s ease-in-out infinite;
        }

        .cta-btn:hover {
            background: #d4561a;
            box-shadow: 0 4px 22px rgba(242, 101, 34, 0.5);
            transform: translateY(-1px);
        }

        @media (max-width: 600px) {
            .cta-btn-wrap { text-align: center; }
            .cta-btn { font-size: 0.82rem; padding: 12px 24px; }
        }