        :root {
            --primary: #059669;
            --primary-dark: #046c4e;
            --primary-light: #10b981;
            --dark: #0b0f17;
            --surface: #121824;
            --surface2: #1a2232;
            --border: #263346;
            --light: #f1f5f9;
            --text: #cbd5e1;
            --text-muted: #8494a8;
            --accent: #f59e0b;
            --gold: #fbbf24;
            --green: #10b981;
        }

        /* Phone Frame Mockup & Section Banner Frame */
        .phone-mockup-frame {
            max-width: 680px;
            margin: 20px auto;
            background: #0d1117;
            border: 3px solid var(--border);
            border-radius: 20px;
            padding: 10px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .phone-mockup-frame:hover {
            border-color: var(--green);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.25);
        }
        .phone-mockup-frame img {
            width: 100%;
            height: auto;
            border-radius: 14px;
            display: block;
        }

        .section-banner-frame {
            max-width: 1000px;
            margin: 24px auto;
            border: 3px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            background: var(--surface);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .section-banner-frame:hover {
            border-color: var(--green);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.25);
        }
        .section-banner-frame img {
            width: 100%;
            height: auto;
            display: block;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: var(--dark); color: var(--text); line-height: 1.6; }


        /* ===== HEADER ===== */
        .header {
            background: var(--surface);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 0 var(--border);
            border-bottom: 1px solid var(--border);
        }

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

        .logo { 
            color: var(--primary); 
            text-decoration: none; 
            font-weight: 800; 
            text-transform: uppercase; 
            display: flex; 
            align-items: center; 
            gap: 10px;
            font-size: 1.2rem;
            letter-spacing: 0.04em;
        }

        .main-nav { display: none; }

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

        .header-icons {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .icon-item {
            background: var(--surface2);
            border-radius: 8px;
            padding: 7px 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: 0.2s;
            cursor: pointer;
            border: 1px solid var(--border);
        }

        .icon-item:hover {
            background: #252d38;
            border-color: var(--primary);
            transform: translateY(-1px);
        }

        .icon-coin, .icon-gift {
            font-size: 1.2rem;
        }

        .icon-gift-wrapper {
            position: relative;
        }

        .gift-indicator {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 9px;
            height: 9px;
            background: #3fb950;
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
            box-shadow: 0 0 6px #3fb950;
        }

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

        .icon-text {
            font-size: 0.88rem;
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            .header-icons { gap: 6px; }
            .icon-item { padding: 6px 10px; font-size: 0.82rem; }
            .icon-coin, .icon-gift { font-size: 1.05rem; }
            .icon-text { font-size: 0.78rem; }
        }

        .burger-btn {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 28px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .burger-btn span {
            width: 28px;
            height: 3px;
            background: var(--text);
            border-radius: 10px;
            transition: 0.3s;
        }

        .burger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .burger-btn.active span:nth-child(2) { opacity: 0; }
        .burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .mobile-menu {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            background: #0d1117;
            border-top: 1px solid var(--border);
            max-height: 0;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0,0,0,0.8);
            opacity: 0;
            pointer-events: none;
        }

        .mobile-menu.open {
            max-height: calc(100vh - 60px);
            height: auto;
            padding: 15px 20px 40px 20px;
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu a {
            color: var(--text);
            text-decoration: none;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .mobile-menu a:hover { color: var(--primary); }

        @media (min-width: 1024px) {
            .main-nav { display: flex; gap: 6px; }
            .main-nav a { 
                color: var(--text-muted);
                text-decoration: none; 
                font-size: 0.9rem; 
                font-weight: 600; 
                padding: 6px 12px;
                border-radius: 6px;
                transition: 0.2s;
                display: flex;
                align-items: center;
                gap: 4px;
            }
            .main-nav a:hover { background: var(--surface2); color: var(--primary); }
            .burger-btn { display: none; }
            .header-mobile-title { display: none; }
        }

        .header-mobile-title {
            display: none !important;
        }

        /* ===== HERO ===== */
        .hero { 
            padding: 25px 20px 10px; 
            background-color: var(--surface);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Ctext x='10' y='40' font-size='28' fill='%23c9a84c' opacity='0.05' font-family='serif'%3E%E2%99%A0%3C/text%3E%3Ctext x='90' y='30' font-size='22' fill='%23c9a84c' opacity='0.05' font-family='serif'%3E%E2%99%A5%3C/text%3E%3Ctext x='50' y='90' font-size='26' fill='%23c9a84c' opacity='0.04' font-family='serif'%3E%E2%99%A3%3C/text%3E%3Ctext x='120' y='100' font-size='22' fill='%23c9a84c' opacity='0.04' font-family='serif'%3E%E2%99%A6%3C/text%3E%3Ctext x='15' y='130' font-size='20' fill='%23c9a84c' opacity='0.04' font-family='serif'%3E%E2%99%A5%3C/text%3E%3Ctext x='110' y='155' font-size='24' fill='%23c9a84c' opacity='0.04' font-family='serif'%3E%E2%99%A0%3C/text%3E%3C/svg%3E");
            background-size: 160px 160px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        
        .hero-container {
            max-width: 1050px;
            margin: 0 auto;
        }
        
        .hero h1 { 
            font-size: 2.2rem;
            color: var(--light);
            margin-bottom: 16px;
            line-height: 1.25;
            font-weight: 800;
        }
        
        .hero p { 
            max-width: 100%;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 15px;
            text-align: justify;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 18px;
            margin-bottom: 22px;
            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; }
        
        .author-box { display: none; }
        .info-box { display: none; }
        .author-avatar { display: none; }
        .author-info { display: none; }
        .author-label { display: none; }
        .author-name { display: none; }
        .verified-badge { display: none; }
        .info-content { display: none; }
        .info-label { display: none; }
        .info-value { display: none; }
        
        @media (max-width: 768px) {
            .hero h1 { font-size: 1.55rem; }
        }

        /* ===== LISTING ===== */
        .listing { padding: 20px; max-width: 900px; margin: 0 auto; }
        
        .listing h2 {
            margin-top: 0;
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
            padding-left: 15px;
            font-size: 1.6rem;
            color: var(--light);
        }

        /* ===== CASINO CARDS ===== */
        .casino-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            transition: box-shadow 0.2s, border-color 0.2s;
        }
        
        .casino-card:hover {
            box-shadow: 0 4px 20px rgba(201,168,76,0.15);
            border-color: rgba(201,168,76,0.4);
        }

        .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(--text-muted);
            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, #c9a84c, #a07830);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 4px 10px;
            border-bottom-left-radius: 8px;
        }
        .rating-badge.high { background: linear-gradient(135deg, #c9a84c, #a07830); }
        .rating-badge.top { background: linear-gradient(135deg, #c9a84c, #a07830); }

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

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

        .casino-name-label {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 4px;
        }

        .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: linear-gradient(135deg, #c9a84c, #a07830);
            color: #fff;
            padding: 13px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.2s;
            white-space: nowrap;
            display: inline-block;
            box-shadow: 0 2px 8px rgba(201,168,76,0.3);
        }

        .btn-casino:hover { 
            background: linear-gradient(135deg, #d4b860, #b58940);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(201,168,76,0.4);
        }

        .card-footer {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 8px 16px 10px 16px;
            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;
        }

        .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.6;
            font-style: normal;
        }

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

        .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: 20px 10px 20px 10px; max-width: 1100px; margin: 0 auto; }
        .content-section h2 { 
            margin-top: 25px; 
            margin-bottom: 25px; 
            border-left: 4px solid var(--primary); 
            padding-left: 15px; 
            font-size: 1.6rem; 
            color: var(--light);
        }
        .content-section h2:first-of-type { margin-top: 0; }
        .content-section p { margin-bottom: 15px; line-height: 1.7; text-align: justify; color: var(--text); }
        
        .hero p { 
            font-size: 1rem; 
            line-height: 1.8; 
            color: var(--text-muted); 
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .content-section h3 { 
            margin-top: 20px; 
            margin-bottom: 15px; 
            border-left: 4px solid var(--primary-dark); 
            padding-left: 12px; 
            font-size: 1.3rem; 
            font-weight: 700; 
            color: var(--light);
        }
        .content-section h4 { 
            margin-top: 20px; 
            margin-bottom: 12px; 
            font-size: 1.1rem; 
            font-weight: 700; 
            color: var(--light);
        }

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

        .image-block img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            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 6px 20px rgba(0,0,0,0.5);
        }

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

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

        .feature-item {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: border-color 0.2s;
        }

        .feature-item:hover {
            border-color: rgba(201,168,76,0.3);
        }

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

        /* ===== TABLE (RESPONSIVE & DARK THEME INTEGRATED) ===== */
        .table-wrapper,
        div[style*="overflow-x: auto"],
        div[style*="overflow-x:auto"] {
            width: 100% !important;
            max-width: 100% !important;
            overflow-x: auto !important;
            -webkit-overflow-scrolling: touch;
            margin: 20px 0;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            border: 1px solid var(--border) !important;
            background: var(--surface) !important;
        }

        table {
            width: 100% !important;
            max-width: 100%;
            border-collapse: collapse !important;
            background: var(--surface) !important;
            color: var(--text) !important;
            border-radius: 12px;
            overflow: hidden;
            border: none !important;
            table-layout: auto;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .table-wrapper table,
        div[style*="overflow-x: auto"] table,
        div[style*="overflow-x:auto"] table {
            min-width: 100%;
        }

        thead,
        tr.table-header {
            background: var(--surface2) !important;
            color: var(--light) !important;
        }

        th {
            background: var(--surface2) !important;
            color: var(--light) !important;
            padding: 12px 16px !important;
            text-align: left !important;
            font-size: 0.9rem !important;
            font-weight: 700 !important;
            letter-spacing: 0.03em !important;
            border-bottom: 2px solid var(--primary) !important;
            border-top: none !important;
            border-left: none !important;
            border-right: none !important;
            word-break: normal;
        }

        th.th-zalety,
        th[style*="color: var(--green)"],
        th[style*="color:#16a34a"],
        th[style*="color: #16a34a"],
        th[style*="green"] {
            color: #34d399 !important;
        }

        th.th-wady,
        th[style*="color: #ea4335"],
        th[style*="color:#ea4335"],
        th[style*="ea4335"],
        th[style*="color:#dc2626"],
        th[style*="color: #dc2626"] {
            color: #f87171 !important;
        }

        td {
            padding: 12px 16px !important;
            border-bottom: 1px solid var(--border) !important;
            border-top: none !important;
            border-left: none !important;
            border-right: none !important;
            text-align: left !important;
            color: var(--text) !important;
            background: var(--surface) !important;
            font-size: 0.9rem !important;
            line-height: 1.6 !important;
            word-break: break-word;
        }

        td strong {
            color: var(--light) !important;
        }

        tr:nth-child(even) td {
            background: rgba(255, 255, 255, 0.025) !important;
        }

        tr:hover td {
            background: rgba(16, 185, 129, 0.08) !important;
        }

        @media (max-width: 768px) {
            .table-wrapper,
            div[style*="overflow-x: auto"],
            div[style*="overflow-x:auto"] {
                margin: 15px 0;
                border-radius: 10px;
            }

            table {
                font-size: 0.82rem !important;
            }

            th {
                padding: 10px 12px !important;
                font-size: 0.83rem !important;
            }

            td {
                padding: 10px 12px !important;
                font-size: 0.82rem !important;
                line-height: 1.45 !important;
            }
        }

        /* ===== PROS/CONS ===== */
        .pros-cons { display: grid; grid-template-columns: 1fr; gap: 20px; }
        @media (min-width: 768px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
        .pc-box { padding: 25px; border-radius: 12px; }
        .pros { background: rgba(46,160,67,0.1); border: 1px solid rgba(46,160,67,0.3); }
        .cons { background: rgba(248,81,73,0.1); border: 1px solid rgba(248,81,73,0.3); }

        /* ===== FAQ ===== */
        .faq-item { 
            background: var(--surface); 
            border: 1px solid var(--border);
            margin-bottom: 15px; 
            padding: 20px; 
            border-radius: 10px; 
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .faq-item:hover { border-color: var(--primary-light); box-shadow: 0 3px 12px rgba(5, 150, 105, 0.08); }
        .faq-q { font-weight: 800; color: var(--light); display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; }
        .faq-icon { font-size: 1.4rem; color: var(--primary); font-weight: 700; transition: transform 0.2s ease; }
        .faq-a { color: var(--text); margin-top: 10px; }

        /* ===== LINKS ===== */
        .content-section a { color: var(--primary); }
        .content-section a:hover { color: #d4b860; }
        .content-section a.btn-casino { color: #fff; }
        .content-section a.btn-casino:hover { color: #fff; }

        /* 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: 12px 10px; vertical-align: middle; background: transparent; }
        .najlepsze-table td:first-child { color: var(--text); font-size: 0.95rem; }
        .najlepsze-table td:last-child { text-align: right; white-space: nowrap; width: 110px; }

        /* h3 + кнопка поряд */
        .h3-with-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin: 20px 0 8px 0;
            flex-wrap: wrap;
        }
        .h3-with-btn h3 {
            margin: 0;
            flex: 1;
        }

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

        .content-list li {
            position: relative;
            padding: 8px 0 8px 22px;
            color: var(--text);
            line-height: 1.6;
            border-bottom: 1px solid rgba(48, 54, 61, 0.5);
        }

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

        .content-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.7;
        }

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

        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: 1px solid var(--primary);
            color: var(--primary);
            font-size: 11px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            top: 12px;
            transform: none;
        }

        /* ===== MAIN ===== */
        .main { 
            background-color: var(--dark);
        }
        .article { background: transparent; }

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

        .footer-inner {
            max-width: 1200px;
            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-col h4 {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .footer-nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            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: 40px;
            width: auto;
            opacity: 0.5;
            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: 1200px;
            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.8rem;
            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.8rem;
            transition: color 0.2s;
        }

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

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

        /* ===== SCROLL TO TOP ===== */
        .scroll-to-top,
        .scroll-to-top-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(185, 28, 28, 0.4);
            transition: all 0.3s ease;
            z-index: 9999;
            font-size: 1.2rem;
            line-height: 1;
        }
        
        .scroll-to-top:hover,
        .scroll-to-top-btn:hover {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 6px 20px rgba(185, 28, 28, 0.6);
        }
        
        .scroll-to-top.show,
        .scroll-to-top-btn.show {
            display: flex !important;
        }
        
        .scroll-to-top svg,
        .scroll-to-top-btn svg {
            stroke: #ffffff;
        }

        @media (max-width: 768px) {
            .scroll-to-top,
            .scroll-to-top-btn {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
            }
        }

        /* Info page H1 — видимий, стриманий */
        .info-page-h1 {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
            text-align: center;
            padding: 18px 24px 0;
            margin: 0;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ================================================ */
        /* Breadcrumbs                                       */
        /* ================================================ */
        .breadcrumbs {
            max-width: 1100px;
            margin: 0 auto;
            padding: 14px 24px 0;
        }

        .breadcrumbs-list {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            font-size: 0.85rem;
            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(--text-muted); }
        .breadcrumbs-current { color: var(--text-muted); }

        /* Info page H1 */
        .info-page-h1 {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
            text-align: center;
            padding: 8px 24px 0;
            margin: 0;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ================================================ */
        /* INFO PAGE — всі специфічні стилі                 */
        /* ================================================ */

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

        .info-hero h2 {
            font-size: 2.2rem;
            color: #fff;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
        }

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

        /* cs-wrap секції */
        .cs-wrap {
            border-top: 1px solid var(--border);
            background: var(--surface2);
        }

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

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

        .cs-section h2 {
            font-size: 1.6rem;
            color: #fff;
            font-weight: 700;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary);
            padding-left: 14px;
        }

        .cs-section h3 {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 700;
            margin: 20px 0 8px;
        }

        .cs-section p {
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 14px;
        }

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

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

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

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

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

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

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

        .info-card h3 {
            font-size: 1rem;
            margin-bottom: 6px;
            color: #fff;
            font-weight: 700;
        }

        .info-card p {
            color: var(--text);
            font-size: 0.9rem;
            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; }

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

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

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

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            background: var(--surface2);
            color: var(--text);
            transition: border-color 0.3s;
            outline: none;
        }

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

        .consent-text {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 15px;
            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: var(--primary);
            color: #0d1117;
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 8px;
        }

        .btn-submit:hover { background: var(--primary-dark); }

        /* Newsletter */
        .newsletter-box {
            background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 40px 35px;
            text-align: center;
        }

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

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

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

        .newsletter-input {
            flex: 1;
            padding: 13px 16px;
            border: 2px solid var(--border);
            border-radius: 8px;
            background: var(--surface2);
            color: var(--text);
            font-family: inherit;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }

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

        .newsletter-btn {
            background: var(--primary);
            color: #0d1117;
            border: none;
            border-radius: 8px;
            padding: 13px 24px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.3s;
            white-space: nowrap;
        }

        .newsletter-btn:hover { background: var(--primary-dark); }

        .newsletter-success {
            display: none;
            margin-top: 16px;
            color: var(--green);
            font-weight: 600;
        }

        .newsletter-success.show { display: block; }

        /* Callout телефон довіри */
        .rg-callout {
            margin-top: 25px;
            padding: 20px 24px;
            background: var(--surface2);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            color: var(--text);
            line-height: 1.7;
        }

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

        /* Responsive */
        @media (max-width: 700px) {
            .contact-grid { grid-template-columns: 1fr; }
            .form-card { padding: 24px; }
            .info-hero h2 { font-size: 1.6rem; }
            .newsletter-form { flex-direction: column; }
            .newsletter-box { padding: 28px 20px; }
            .cs-section { padding: 30px 20px; }
        }

        /* ================================================ */
        /* 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(201,168,76,0.6);
            color: #0d1117;
            width: 28px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 12px;
            user-select: none;
            transition: background .2s;
            flex-shrink: 0;
        }

        .ftoc__btn:hover { background: rgba(201,168,76,0.85); }

        #toc-toggle:not(:checked) ~ .ftoc .ftoc__btn {
            background: rgba(201,168,76,0.55);
        }

        .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: 270px; }

        #toc-toggle:checked ~ .ftoc .ftoc__btn {
            background: rgba(201,168,76,0.9);
        }

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

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

        .ftoc__list li a {
            display: block;
            color: var(--text);
            text-decoration: none;
            font-size: .82rem;
            padding: 6px 16px;
            border-left: 2px solid transparent;
            white-space: normal;
            line-height: 1.4;
        }

        .ftoc__list li a:hover {
            color: var(--primary);
            border-left-color: var(--primary);
            background: rgba(201,168,76,.08);
        }

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

        /* cs-section h4 (колишні h3 на info сторінці) */
        .cs-section h4 {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 700;
            margin: 16px 0 6px;
        }

        /* ===== HEADER CTA BUTTON ===== */
        .header-cta-btn {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #ffffff;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 0.85rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            box-shadow: 0 3px 12px rgba(16, 185, 129, 0.35);
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid #34d399;
        }

        .header-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 18px rgba(16, 185, 129, 0.5);
            background: linear-gradient(135deg, #34d399 0%, #059669 100%);
        }

        @media (max-width: 480px) {
            .header-cta-btn {
                padding: 6px 12px;
                font-size: 0.78rem;
            }
        }

        /* ===== TRUST & PAYMENT LOGOS SECTION ===== */
        .trust-section {
            margin-top: 35px;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        
        .trust-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 18px;
        }
        
        .trust-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 18px;
            margin-bottom: 30px;
        }
        
        .trust-logo-img {
            max-height: 38px;
            max-width: 120px;
            width: auto;
            object-fit: contain;
            filter: brightness(0.9) contrast(1.05);
            transition: filter 0.2s, transform 0.2s;
            background: rgba(255,255,255,0.02);
            padding: 4px 8px;
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        
        .trust-logo-img:hover {
            filter: brightness(1.15);
            transform: translateY(-2px);
            border-color: rgba(201,168,76,0.3);
        }

        /* ===== GDPR COOKIE POPUP ===== */
        .gdpr-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 520px;
            margin: 0 auto;
            background: #0f141c;
            border: 1px solid #c9a84c;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
            z-index: 99999;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        .gdpr-banner.hidden {
            transform: translateY(140px);
            opacity: 0;
            pointer-events: none;
        }

        .gdpr-content {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .gdpr-content p {
            font-size: 0.92rem;
            color: #ffffff;
            line-height: 1.6;
            margin: 0;
            font-weight: 500;
        }

        .gdpr-content strong {
            color: #ffd700;
            font-weight: 700;
        }

        .gdpr-actions {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
            align-items: center;
        }

        #gdprAccept {
            background: linear-gradient(135deg, #c9a84c, #e5c158);
            color: #0d1117 !important;
            border: none;
            padding: 9px 22px !important;
            border-radius: 6px;
            font-weight: 800 !important;
            cursor: pointer;
            font-size: 0.88rem !important;
            letter-spacing: 0.03em;
            box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
            transition: transform 0.2s, filter 0.2s;
        }

        #gdprAccept:hover {
            filter: brightness(1.15);
            transform: translateY(-1px);
        }

        #gdprDecline {
            background: transparent !important;
            color: #cbd5e1 !important;
            border: 1px solid #475569 !important;
            padding: 8px 16px !important;
            border-radius: 6px;
            font-weight: 600 !important;
            font-size: 0.85rem !important;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }

        #gdprDecline:hover {
            background: rgba(255, 255, 255, 0.1) !important;
            color: #ffffff !important;
        }
            cursor: pointer;
            font-size: 0.85rem;
            transition: 0.2s;
        }

        .gdpr-btn-decline:hover {
            color: #c9d1d9;
            border-color: #8b949e;
        }

        /* ===== AFFILIATE TABLE (EXACT SCREENSHOT DESIGN MATCH) ===== */
        .aff-table {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin: 25px 0 35px;
            width: 100%;
        }

        .aff-row {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
            transition: all 0.25s ease;
            position: relative;
            color: #1a1a1a;
        }

        .aff-row:hover {
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.15);
            border-color: #10b981;
            transform: translateY(-2px);
        }

        /* Left Column: Logo & Star Rating */
        .aff-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 135px;
            flex-shrink: 0;
        }

        .aff-logo-box {
            background: #ffffff;
            border-radius: 10px;
            width: 135px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px 10px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .aff-logo-box:hover {
            transform: scale(1.03);
            border-color: #059669;
            box-shadow: 0 4px 14px rgba(5, 150, 105, 0.18);
        }

        .aff-logo-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
        }

        .aff-rating {
            background: #333333;
            color: #ffb400;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .aff-rating span {
            color: #ffffff;
            font-size: 0.72rem;
            font-weight: 600;
        }

        /* Badge Column (Ribbon & Gift) */
        .aff-badge-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex-shrink: 0;
            width: 90px;
        }

        .aff-ribbon {
            width: 100%;
            height: 24px;
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 6px;
            color: #ffffff;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-align: center;
            white-space: nowrap;
        }

        .aff-gift-icon {
            width: 100%;
            padding: 3px 6px;
            border-radius: 5px;
            border: 1px solid #10b981;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.68rem;
            font-weight: 700;
            background: #ecfdf5;
            color: #047857;
            flex-shrink: 0;
            text-transform: uppercase;
            text-align: center;
            white-space: nowrap;
        }

        /* Bonus Column */
        .aff-bonus-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
            min-width: 140px;
        }

        .aff-bonus-label {
            font-size: 0.8rem;
            color: #64748b;
            font-weight: 600;
            margin-bottom: 2px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .aff-bonus-amount {
            font-size: 1.08rem;
            font-weight: 800;
            color: #047857;
            line-height: 1.3;
        }

        /* Features Column */
        .aff-features-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            flex: 1.2;
            min-width: 160px;
        }

        .aff-feature-item {
            font-size: 0.82rem;
            font-weight: 700;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .aff-feature-item .check {
            color: #059669;
            font-size: 0.85rem;
            font-weight: 800;
        }

        .aff-payments-row {
            display: flex;
            align-items: center;
            gap: 5px;
            flex-wrap: wrap;
            margin-top: 5px;
        }

        .aff-pay-badge {
            background: #f1f5f9;
            border: 1px solid #cbd5e1;
            border-radius: 4px;
            padding: 2px 6px;
            font-size: 0.68rem;
            font-weight: 800;
            color: #334155;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

        .aff-pay-badge.visa { color: #1a1f71; }
        .aff-pay-badge.mc { color: #eb001b; }
        .aff-pay-badge.mifinity { color: #007bc1; }
        .aff-pay-badge.psf { color: #0099e5; }
        .aff-pay-badge.crypto { color: #d97706; }
        .aff-pay-badge.revolut { color: #0075ff; }
        .aff-pay-badge.skrill { color: #811e4d; }
        .aff-pay-badge.neteller { color: #8dc63f; }

        /* CTA Column */
        .aff-cta-col {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .aff-btn {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: #ffffff !important;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 0.88rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.25s ease;
            border: 1px solid #10b981;
            box-shadow: 0 3px 10px rgba(5, 150, 105, 0.3);
            white-space: nowrap;
        }

        .aff-btn:hover {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-color: #34d399;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45);
        }

        /* Responsive Mobile Layout */
        @media (max-width: 992px) {
            .aff-row {
                flex-wrap: wrap;
                padding: 14px;
                gap: 12px;
            }
            .aff-left {
                width: 100%;
                flex-direction: row;
                justify-content: space-between;
            }
            .aff-logo-box {
                width: 140px;
                height: 60px;
            }
            .aff-badge-col {
                display: none;
            }
            .aff-bonus-col, .aff-features-col {
                width: 48%;
                min-width: 140px;
            }
            .aff-cta-col {
                width: 100%;
                margin-top: 4px;
            }
            .aff-btn {
                width: 100%;
                justify-content: center;
                padding: 12px;
            }
        }

        @media (max-width: 540px) {
            .aff-bonus-col, .aff-features-col {
                width: 100%;
            }
        }

        /* ===== MOCKUP SCREENSHOT CARDS ===== */
        .mockup-container {
            margin: 25px 0 30px;
            text-align: center;
        }

        .mockup-card {
            display: inline-block;
            width: 100%;
            max-width: 820px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border);
            background: #ffffff;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            text-decoration: none;
        }

        .mockup-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 35px rgba(184, 0, 0, 0.18);
            border-color: #d17578;
        }

        .mockup-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .mockup-caption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: #f8fafc;
            border-top: 1px solid var(--border);
            font-weight: 600;
        }

        /* ===== FOOTER ===== */
        .site-footer,
        .footer {
            background: var(--surface);
            padding: 45px 20px 35px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            text-align: center;
        }

        .site-footer-container,
        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .footer-subtext {
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
            margin: 20px auto 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            width: 100%;
        }

        .footer-logos-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 0 auto 25px;
            width: 100%;
            max-width: 900px;
        }

        .footer-logos-row img {
            height: 32px;
            width: auto;
            object-fit: contain;
            filter: brightness(0.85) contrast(1.1);
            opacity: 0.85;
            transition: opacity 0.2s, filter 0.2s, transform 0.2s;
        }

        .footer-logos-row img:hover {
            opacity: 1;
            filter: brightness(1.1);
            transform: translateY(-2px);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 20px auto 25px;
            font-size: 0.9rem;
            font-weight: 600;
            width: 100%;
        }

        .footer-links a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            text-decoration: underline;
        }

        .footer-warning-card {
            background: var(--surface2);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 22px 28px;
            margin: 25px auto;
            max-width: 960px;
            width: 100%;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .footer-warning-text {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.65;
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-warning-text strong {
            color: var(--light);
        }

        .footer-copyright {
            text-align: center;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            width: 100%;
        }

        @media (max-width: 768px) {
            .footer-logos-row {
                gap: 14px;
            }
            .footer-logos-row img {
                height: 26px;
            }
            .footer-warning-card {
                padding: 16px;
            }
        }