
        /* --- NULLSTILLING & APP-OPTIMALISERING --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: #080808;
            color: #e6e6e6;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            text-align: center;
        }

        :root {
            --gold: #d4af37;
            --dark-gold: #aa841b;
            --light-gold: #f3e5ab;
            --black: #080808;
            --dark-grey: #121212;
            --light-grey: #1f1f1f;
            --border-color: #2a2a2a;
            --text-muted: #aaaaaa;
        }

        /* --- HEADER (Листается вверх) --- */
        .site-header {
            background: linear-gradient(180deg, rgba(8,8,8,0.98) 0%, rgba(18,18,18,0.95) 100%);
            border-bottom: 2px solid var(--gold);
            position: relative;
            z-index: 1000;
            padding: 18px 24px;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1.5px;
            color: #fff;
            text-shadow: 0 0 10px rgba(214, 175, 55, 0.3);
            margin-bottom: 15px;
            display: inline-block;
        }

        .logo span { color: var(--gold); }

        .header-navigation {
            display: block;
            margin-bottom: 15px;
        }

        .nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0 15px;
            display: inline-block;
        }

        .nav-link:hover { color: var(--gold); }
        .header-buttons { display: block; }

        /* --- КНОПКИ --- */
        .btn {
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            transition: transform 0.1s ease, background-color 0.2s ease;
            text-align: center;
            display: inline-block;
            cursor: pointer;
            margin: 5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: #000;
            border: none;
        }

        .btn-secondary {
            background: rgba(214,175,55,0.05);
            color: var(--gold);
            border: 1px solid var(--gold);
        }

        .btn-cta {
            background: linear-gradient(135deg, #fff 0%, var(--gold) 40%, var(--dark-gold) 100%);
            color: #000;
            font-size: 20px;
            padding: 18px 60px;
            border-radius: 40px;
            box-shadow: 0 6px 30px rgba(214, 175, 55, 0.4);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: none;
            display: inline-block;
            margin-top: 20px;
        }

        .btn:active, .btn-cta:active { transform: scale(0.97); }

        /* --- HERO SLOT --- */
        .hero-image-slot {
            padding: 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .image-placeholder {
            width: 100%;
            height: 480px;
            background: #111111;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            display: block;
            position: relative;
            overflow: hidden;
            padding: 80px 20px;
        }

        .hero-overlay-content {
            position: relative;
            z-index: 2;
            margin-bottom: 40px;
        }

        .live-badge {
            background: #ff3b30;
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 0 10px rgba(255,59,48,0.5);
        }

        .hero-overlay-content h2 {
            font-size: 42px;
            font-weight: 900;
            color: #fff;
            letter-spacing: 2px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.8);
            margin-bottom: 10px;
        }

        .hero-overlay-content p { color: var(--gold); font-size: 18px; font-weight: 500; }

        .placeholder-text {
            color: #444444;
            font-weight: 800;
            font-size: 13px;
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            letter-spacing: 3px;
            border-top: 1px dashed #222;
            padding-top: 15px;
            width: 80%;
            margin: 0 auto;
        }

        /* --- CTA SECTION --- */
        .cta-section {
            padding: 80px 24px;
            background: radial-gradient(circle at center, #121212 0%, #080808 100%);
        }

        .cta-container { max-width: 1000px; margin: 0 auto; }

        .cta-section h1 {
            font-size: 46px;
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            color: var(--text-muted);
            font-size: 18px;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .bonus-steps-grid { display: block; margin-bottom: 40px; text-align: center; }

        .step-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--border-color);
            padding: 25px 20px;
            border-radius: 8px;
            display: inline-block;
            width: 220px;
            margin: 10px;
            vertical-align: top;
        }

        .step-num {
            background: var(--gold);
            color: #000;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 900;
            font-size: 14px;
            display: block;
            margin: 0 auto 15px auto;
            line-height: 28px;
        }

        .step-card h4 { color: #fff; font-size: 18px; margin-bottom: 8px; }
        .step-card p { color: var(--gold); font-weight: bold; font-size: 14px; }
        .cta-badge-container { margin-bottom: 30px; }

        .cta-badge {
            background: rgba(214, 175, 55, 0.08);
            border: 2px dashed var(--gold);
            color: var(--gold);
            padding: 16px 40px;
            font-size: 24px;
            font-weight: 900;
            display: inline-block;
            border-radius: 6px;
            letter-spacing: 1px;
        }

        .cta-subtext { color: #555555; font-size: 12px; margin-top: 20px; }

        /* --- VISUELL DATA & DASHBOARD --- */
        .visual-data-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 24px;
            border-top: 1px solid var(--border-color);
        }

        .section-title-area { margin-bottom: 50px; }
        .section-title-area h2 { font-size: 36px; color: var(--gold); font-weight: 800; margin-bottom: 15px; }
        .section-title-area p { color: var(--text-muted); font-size: 17px; max-width: 700px; margin: 0 auto; }
        
        .dashboard-grid { 
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
        }

        .data-card {
            background: var(--dark-grey);
            border: 1px solid var(--light-grey);
            border-radius: 14px;
            padding: 30px 20px;
            width: 380px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        }

        .wide-card, .row-card { width: 800px; }
        .data-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 25px; color: #fff; text-align: center; }
        .card-desc { font-size: 14px; color: var(--text-muted); margin-top: 20px; }

        /* Круговая диаграмма */
        .progress-circle { position: relative; width: 140px; height: 140px; margin: 10px auto; }
        .circle-svg { transform: rotate(-90deg); width: 100%; height: 100%; }
        .bg-circle { fill: none; stroke: #222222; stroke-width: 8; }
        .fg-circle { fill: none; stroke: var(--gold); stroke-width: 8; stroke-dasharray: 283; stroke-dashoffset: 70; }
        .circle-number { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 24px; font-weight: 900; color: #fff; }

        /* Столбиковая диаграмма */
        .bar-chart { 
            display: flex; 
            justify-content: space-around; 
            align-items: flex-end;
            height: 180px; 
            padding-top: 20px;
            max-width: 100%;
            margin: 0 auto;
        }
        .bar-group { 
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            max-width: 110px;
        }
        .bar { 
            width: 100%; 
            max-width: 45px;
            background: linear-gradient(to top, var(--dark-gold) 0%, var(--gold) 100%); 
            border-radius: 6px 6px 0 0; 
            padding-top: 8px; 
            box-shadow: 0 4px 15px rgba(214,175,55,0.2); 
            text-align: center;
        }
        .bar span { font-size: 11px; color: #000; font-weight: 900; display: block; }
        .bar-label { font-size: 12px; margin-top: 12px; color: var(--text-muted); display: block; white-space: nowrap; }

        /* Линия Победителей */
        .live-ticker { display: block; text-align: center; }
        .ticker-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.04);
            padding: 16px 20px;
            border-radius: 8px;
            margin: 10px auto;
            max-width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }
        .ticker-item .user { color: #fff; font-weight: 700; width: 33%; text-align: left; }
        .ticker-item .game { color: #888; width: 33%; text-align: center; }
        .ticker-item .amount { font-weight: 800; width: 33%; text-align: right; }
        .ticker-item .amount.positive { color: #34c759; }

        /* --- НОВЫЙ БЛОК: ПОПУЛЯРНЫЕ СЛОТЫ (GRID И КАРТОЧКИ) --- */
        .slots-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 24px;
            border-top: 1px solid var(--border-color);
        }
        .slots-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 35px;
        }
        .slot-card {
            background: linear-gradient(180deg, var(--dark-grey) 0%, #171717 100%);
            border: 1px solid var(--light-grey);
            border-radius: 12px;
            width: 280px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.5);
            transition: transform 0.2s ease, border-color 0.2s ease;
            text-align: left;
        }
        .slot-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
        }
        .slot-thumbnail {
            width: 100%;
            height: 160px;
            background: #252525;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 2px solid var(--light-grey);
        }
        .slot-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--gold);
            color: #000;
            font-size: 11px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 4px;
            text-transform: uppercase;
        }
        .slot-thumbnail-text {
            color: #444;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .slot-info {
            padding: 20px;
        }
        .slot-info h4 {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .slot-provider {
            color: var(--gold);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .slot-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px dashed rgba(255,255,255,0.05);
            padding-top: 12px;
            margin-bottom: 18px;
        }
        .slot-meta span strong {
            color: #fff;
        }
        .slot-btn {
            display: block;
            background: rgba(214,175,55,0.1);
            color: var(--gold);
            border: 1px solid var(--gold);
            text-align: center;
            padding: 10px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            transition: background 0.2s, color 0.2s;
        }
        .slot-btn:hover {
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: #000;
        }

        /* --- ТАБЛИЦЫ С ЗАЩИТОЙ ОТ ВЫХОДА ЗА ГРАНИ ЭКРАНА --- */
        .content-block {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
            border-top: 1px solid var(--border-color);
        }

        .content-block h2 {
            color: #fff;
            margin: 50px 0 25px 0;
            font-size: 32px;
            font-weight: 800;
            text-align: center;
        }

        .section-intro {
            color: var(--text-muted);
            font-size: 17px;
            margin-bottom: 35px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .table-responsive-wrapper {
            width: 100%;
            max-width: 1000px;
            margin: 30px auto 50px auto;
            overflow-x: auto; 
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            border: 1px solid var(--light-grey);
            -webkit-overflow-scrolling: touch;
        }

        .content-block table {
            width: 100%;
            border-collapse: collapse;
            background: var(--dark-grey);
            font-size: 15px;
            min-width: 700px; 
        }

        .content-block th, .content-block td {
            padding: 18px 24px;
            text-align: center;
            vertical-align: middle;
            white-space: nowrap;
        }

        .content-block th {
            background-color: rgba(214, 175, 55, 0.12);
            color: var(--gold);
            font-weight: 800;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.8px;
            border-bottom: 2px solid var(--gold);
        }

        .content-block td {
            border-bottom: 1px solid var(--light-grey);
            color: #e6e6e6;
        }

        .content-block tr:last-child td { border-bottom: none; }
        .content-block tr:hover td { background-color: rgba(255,255,255,0.03); }

        .table-btn {
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: #000;
            padding: 8px 20px;
            text-decoration: none;
            font-weight: 800;
            font-size: 12px;
            border-radius: 4px;
            display: inline-block;
            text-transform: uppercase;
        }

        /* СПИСКИ */
        .content-block ul { list-style: none; margin: 35px auto; padding: 0; max-width: 900px; text-align: center; }
        .content-block ul li {
            position: relative;
            padding: 25px;
            background: var(--dark-grey);
            border-radius: 8px;
            border: 1px solid var(--light-grey);
            color: #d1d1d1;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
            text-align: center;
        }
        .content-block ul li strong { color: #fff; display: block; margin-bottom: 8px; font-size: 18px; }

        /* --- FORFATTER BLOKK --- */
        .author-section {
            background: linear-gradient(135deg, #0b0b0b 0%, #121212 100%);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 60px 24px;
        }

        .author-container { max-width: 800px; margin: 0 auto; text-align: center; }
        .avatar-fallback {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--light-grey);
            border: 3px solid var(--gold);
            display: block;
            margin: 0 auto 20px auto;
            line-height: 94px;
            color: var(--gold);
            font-weight: 900;
            font-size: 32px;
            box-shadow: 0 0 25px rgba(214, 175, 55, 0.25);
        }
        .author-info h3 { color: #fff; margin-bottom: 15px; font-size: 24px; font-weight: 800; }
        .author-info p { color: var(--text-muted); font-size: 16px; line-height: 1.7; max-width: 700px; margin: 0 auto; }

        /* --- FOOTER --- */
        .site-footer { background-color: #040404; padding: 65px 24px; font-size: 13px; color: #666666; border-top: 2px solid var(--light-grey); }
        .footer-container { max-width: 1000px; margin: 0 auto; text-align: center; }
        .footer-container p { line-height: 1.8; margin-bottom: 25px; }
        .footer-container p strong { color: #999999; display: block; margin-bottom: 8px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
        .copyright { color: #888888; font-size: 14px; border-bottom: 1px solid #111; padding-bottom: 20px; margin-bottom: 25px; }

        /* --- АДАПТИВНОСТЬ ПОД ТЕЛЕФОНЫ И ПЛАНШЕТЫ --- */
        @media (max-width: 1024px) {
            .data-card, .wide-card, .row-card { width: 100%; max-width: 500px; }
        }

        @media (max-width: 768px) {
            .visual-data-section { padding: 40px 15px; }
            .section-title-area h2 { font-size: 28px; }
            .slots-section { padding: 40px 15px; }
            .slots-section h2 { font-size: 28px; }
            .slot-card { width: 100%; max-width: 340px; }
            .cta-section h1 { font-size: 30px; }
            .hero-overlay-content h2 { font-size: 26px; }
            .hero-image-slot { padding: 10px; }
            .image-placeholder { height: 360px; padding: 40px 10px; }
            .step-card { width: 100%; display: block; margin: 15px auto; }
            .cta-badge { font-size: 16px; padding: 12px 20px; }
            .bar-chart { height: 150px; }
            .bar span { font-size: 10px; }
            .bar-label { font-size: 11px; }
            .ticker-item { font-size: 12px; padding: 12px 10px; }
        }

/* --- ФИКС: горизонтальный скролл таблиц на мобильных --- */
.content-block {
    overflow-x: hidden;
}

.content-block table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}
/* --- ФИКС ТАБЛИЦ: скролл без правки HTML --- */
.content-block table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
    background: var(--dark-grey);
    font-size: 15px;
    min-width: 0; /* сбрасываем min-width: 700px */
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 1px solid var(--light-grey);
    border-radius: 10px;
    margin: 30px auto 50px auto;
}