        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
        
        :root {
            --main-color: #fd9901;
            --dark-color: #1a1a1a;
            --light-color: #f5f5f5;
            --hover-color: #fd9901;
            --text-color: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes countUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideIn {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }
        
        /* Шапка */
        header {
            background: linear-gradient(to right, #000000, #1a1a1a);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--main-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--text-color);
        }
        
        /* Навигация для десктопа */
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        nav.desktop-nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav.desktop-nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        nav.desktop-nav ul li a:hover,
        nav.desktop-nav ul li a.active {
            color: var(--main-color);
        }
        
        nav.desktop-nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--main-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav.desktop-nav ul li a:hover::after,
        nav.desktop-nav ul li a.active::after {
            width: 100%;
        }
        
        /* Бургер-меню для мобильных */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 70%;
            height: 100vh;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1001;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            padding: 80px 20px 20px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav ul {
            list-style: none;
        }
        
        .mobile-nav ul li {
            margin-bottom: 20px;
        }
        
        .mobile-nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 18px;
            display: block;
            padding: 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .mobile-nav ul li a:hover {
            background: rgba(255, 107, 0, 0.2);
            color: var(--main-color);
        }
        
        .mobile-nav ul li a.active {
            color: var(--text-color);
            background: rgba(255, 107, 0, 0.2);
        }
        
        .mobile-nav ul li a.active::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 100%;
            background: var(--main-color);
            left: 0;
            top: 0;
        }
        
        .close-mobile-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--text-color);
            cursor: pointer;
        }
        
        .account-btn {
            background-color: var(--main-color);
            color: var(--dark-color);
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .account-btn:hover {
            background-color: var(--hover-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
        }
        
        .mobile-account-btn {
            display: none;
            background-color: var(--main-color);
            color: var(--dark-color);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
            text-decoration: none;
        }
        
        /* Герой секция */
        .hero {
            height: 100vh;
            background: url('/php/img/backround2.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding-top: 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 36px;
            margin-bottom: 20px;
            text-transform: uppercase;
            animation: fadeIn 1s ease;
        }
        
        .hero h1 span {
            color: var(--main-color);
        }
        
        .hero p {
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.6;
            animation: fadeIn 1s ease 0.3s both;
        }
        
        .play-btn {
            background-color: var(--main-color);
            color: var(--dark-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeIn 1s ease 0.9s both;
            margin-bottom: 30px;
        }
        
        .play-btn:hover {
            background-color: var(--hover-color);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 30px;
            animation: fadeIn 1s ease 0.6s both;
        }
        
        .stat-item {
            background: rgba(255, 107, 0, 0.2);
            padding: 8px 15px;
            border-radius: 8px;
            border: 1px solid var(--main-color);
            min-width: 120px;
        }
        
        .stat-item .stat-value {
            color: var(--main-color);
            font-weight: 700;
            font-size: 18px;
            display: block;
            margin-bottom: 5px;
        }
        
        .stat-item .stat-label {
            font-size: 12px;
            opacity: 0.8;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--text-color);
            font-size: 24px;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 1;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }
        
        /* Секция загрузки */
        .download-section {
            padding: 80px 20px;
            background: linear-gradient(to bottom, #1a1a1a, #000000);
            text-align: center;
        }
        
        .section-title {
            font-size: 28px;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .section-title.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--main-color);
            bottom: -10px;
            left: 25%;
        }
        
        .download-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .download-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            width: 100%;
            max-width: 300px;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .download-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .download-card:nth-child(1) { transition-delay: 0.2s; }
        .download-card:nth-child(2) { transition-delay: 0.4s; }
        .download-card:nth-child(3) { transition-delay: 0.6s; }
        
        .download-card:hover {
            background: rgba(255, 107, 0, 0.1);
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .download-icon {
            font-size: 40px;
            color: var(--main-color);
            margin-bottom: 15px;
        }
        
        .download-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .download-card p {
            color: #cccccc;
            margin-bottom: 20px;
            line-height: 1.5;
            font-size: 14px;
        }
        
        .download-btn {
            background-color: var(--main-color);
            color: var(--dark-color);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            font-size: 14px;
        }
        
        .download-btn:hover {
            background-color: var(--hover-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
        }
        
        /* Соц сети */
        .social-section {
            padding: 60px 20px;
            background-color: #000000;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        .social-link-2 {
            color: var(--text-color);

        }
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-color);
            font-size: 24px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .social-link.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .social-link:nth-child(1) { transition-delay: 0.1s; }
        .social-link:nth-child(2) { transition-delay: 0.2s; }
        .social-link:nth-child(3) { transition-delay: 0.3s; }
        .social-link:nth-child(4) { transition-delay: 0.4s; }
        .social-link:nth-child(5) { transition-delay: 0.5s; }
        
        .social-link:hover {
            background: var(--main-color);
            color: var(--dark-color);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
        }
        
        /* Футер */
        footer {
            background: var(--dark);
            padding: 30px 0;
            text-align: center;
            font-size: 14px;
            color: rgba(236, 240, 241, 0.6);
        }
        
        footer p {
            color: #777777;
            font-size: 12px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(236, 240, 241, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }
        
        /* Медиа-запросы */
        @media (max-width: 992px) {
            nav.desktop-nav, .account-btn {
                display: none;
            }
            
            .mobile-menu-btn, .mobile-account-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 14px;
            }
            
            .stat-item {
                min-width: 100px;
                padding: 6px 10px;
            }
            
            .stat-item .stat-value {
                font-size: 16px;
            }
            
            .stat-item .stat-label {
                font-size: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .play-btn {
                padding: 10px 25px;
                font-size: 14px;
            }
            
            .stats-container {
                gap: 10px;
            }
            
            .stat-item {
                min-width: 80px;
                padding: 5px 8px;
            }
            
            .stat-item .stat-value {
                font-size: 14px;
            }
            
            .stat-item .stat-label {
                font-size: 9px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .download-card {
                padding: 15px;
            }
            
            .download-icon {
                font-size: 35px;
            }
            
            .download-card h3 {
                font-size: 18px;
            }
            
            .download-card p {
                font-size: 13px;
            }
            
            .download-btn {
                padding: 8px 20px;
                font-size: 13px;
            }
            
            .social-link {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            color: var(--secondary);
            transform: scale(1.05);
        }
        
        .logo img {
            height: 4vh;
        }