
        :root {
            --bg-color: #080808;
            --card-bg: #121212;
            /* Золотой/шахтерский градиент в стиле Mine Slot */
            --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --border-color: #262626;
        }

        html { scroll-behavior: smooth; }
        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            margin: 0;
            line-height: 1.6;
        }

        nav {
            position: fixed;
            top: 0; 
            width: 100%;
            background: rgba(8, 8, 8, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            padding: 15px 0;
            /* Убираем возможные ограничения по ширине */
            left: 0;
        }

        nav ul { 
            display: flex; 
            list-style: none; 
            margin: 0; 
            padding: 0 20px; 
            
            /* ВКЛЮЧАЕМ СКРОЛЛ */
            overflow-x: auto; 
            scroll-snap-type: x mandatory; /* Мягкое прилипание при скролле */
            -webkit-overflow-scrolling: touch; /* Плавность для iPhone */
            
            /* Центрируем на больших экранах, прижимаем к лево на малых */
            justify-content: flex-start; 
        }

        /* Прячем некрасивую полосу прокрутки */
        nav ul::-webkit-scrollbar {
            display: none;
        }
        nav ul {
            -ms-overflow-style: none;  /* для IE и Edge */
            scrollbar-width: none;  /* для Firefox */
        }

        nav ul li { 
            margin-right: 25px; 
            flex-shrink: 0; /* ВАЖНО: не дает пунктам меню сжиматься */
            scroll-snap-align: start;
        }

        nav ul li a {
            text-decoration: none; 
            color: var(--text-main);
            font-size: 0.85rem; 
            font-weight: 700; 
            text-transform: uppercase; 
            letter-spacing: 1px;
            white-space: nowrap; /* ВАЖНО: текст в одну строку */
            transition: color 0.3s;
        }

        /* На больших экранах центрируем, если пунктов мало */
        @media (min-width: 1024px) {
            nav ul {
                justify-content: center;
            }
        }




        header {
            height: 100vh;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; padding: 0 20px;
            background: radial-gradient(circle at center, #2d1b02 0%, #080808 100%);
        }
        h1 {
            font-size: clamp(3.5rem, 10vw, 7rem);
            font-weight: 900; margin: 0;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
        }
        header p { color: var(--text-dim); font-size: 1.3rem; max-width: 700px; margin-top: 20px; }

        section { padding: 100px 20px; max-width: 1100px; margin: auto; }
        h2 { font-size: 2.8rem; margin-bottom: 40px; font-weight: 900; }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        .card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 40px;
            border-radius: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .card:hover {
            transform: translateY(-8px);
            border-color: #f59e0b;
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
        }
        .card h3 { color: #f59e0b; margin-top: 0; font-size: 1.6rem; }
        
        .btn {
            display: inline-block;
            padding: 20px 45px;
            background: var(--accent-gradient);
            color: #000; /* Черный текст на золоте выглядит премиально */
            text-decoration: none;
            border-radius: 12px;
            font-weight: 900;
            margin-top: 30px;
            text-transform: uppercase;
            transition: 0.3s;
        }
        .btn:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(245, 158, 11, 0.5); }
 .screenshot-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .screenshot-card {
        text-align: center;
        background: var(--card-bg);
        border-radius: 24px;
        padding: 15px;
        border: 1px solid var(--border-color);
        transition: border-color 0.3s ease;
    }

    .screenshot-card:hover {
        border-color: #f59e0b;
    }

    .img-wrapper {
        width: 100%;
        aspect-ratio: 16 / 9; /* Соотношение сторон как у игровых скринов */
        background: #1a1a1a; /* Цвет-заглушка до загрузки фото */
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Картинка заполнит блок без искажений */
        transition: transform 0.5s ease;
    }

    .screenshot-card:hover img {
        transform: scale(1.05); /* Легкий зум при наведении */
    }

    .screenshot-card p {
        font-size: 0.9rem;
        color: var(--text-dim);
        margin: 10px 0;
    }
        /* Таблица характеристик для SEO */
        .stats-table {
            width: 100%; border-collapse: collapse; margin-top: 30px; background: var(--card-bg); border-radius: 15px; overflow: hidden;
        }
        .stats-table td { padding: 20px; border-bottom: 1px solid var(--border-color); }
        .stats-table td:first-child { color: var(--text-dim); font-weight: bold; }

        footer { text-align: center; padding: 80px; color: var(--text-dim); border-top: 1px solid var(--border-color); }
 
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.share-btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
}

/* Цвета брендов с легким свечением */
.tg { background: #0088cc; box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3); }
.wa { background: #25d366; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.vk { background: #0077ff; box-shadow: 0 4px 15px rgba(0, 119, 255, 0.3); }

/* Иконки в футере (если у вас есть свои каналы) */
.footer-socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #f59e0b;
}
