* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-bg: #0a0a0f;
            --card-bg: #1a1a2a;
            --accent-blue: #00a3ff;
            --accent-purple: #b535f6;
            --text-white: #ffffff;
            --text-gray: #b0b0c0;
            --gradient: linear-gradient(135deg, #00a3ff, #b535f6);
            --header-height: 80px;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Шапка */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            font-family: 'Exo 2', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(181, 53, 246, 0.3);
        }

        .nav-desktop {
            display: flex;
            gap: 2rem;
        }

        .nav-desktop a {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-desktop a:hover {
            color: var(--accent-blue);
        }

        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-desktop a:hover::after {
            width: 100%;
        }

        .header-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-login {
            background: transparent;
            color: var(--text-white);
            border: 2px solid var(--text-white);
        }

        .btn-register {
            background: var(--gradient);
            color: var(--text-white);
            box-shadow: 0 4px 15px rgba(181, 53, 246, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Бургер-меню */
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background: var(--text-white);
            margin: 3px 0;
            transition: 0.3s;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(20px);
            padding: 100px 2rem 2rem;
            transition: right 0.4s ease-in-out;
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .mobile-nav a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 1.2rem;
            padding: 1rem;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .menu-user {
            text-align: center;
            margin-bottom: 2rem;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Главная секция */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.9), rgba(26, 26, 42, 0.8));
            position: relative;
            padding: 0 1rem;
            margin-top: var(--header-height);
        }

        .hero-content h1 {
            font-family: 'Exo 2', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-white), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gradient);
            color: var(--text-white);
            padding: 15px 30px;
            font-size: 1.1rem;
            box-shadow: 0 8px 25px rgba(181, 53, 246, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-white);
            border: 2px solid var(--text-white);
            padding: 15px 30px;
            font-size: 1.1rem;
        }

        /* Секции */
        section {
            padding: 5rem 1rem;
        }

        .section-title {
            font-family: 'Exo 2', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-white);
        }

        /* Игры */
        .games-section {
            background: var(--primary-bg);
        }

        .games-filter {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            background: transparent;
            color: var(--text-gray);
            border: 1px solid var(--text-gray);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--gradient);
            color: var(--text-white);
            border-color: transparent;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .game-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #2a2a3a, #3a3a4a);
            position: relative;
            overflow: hidden;
        }

        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .game-card:hover .game-overlay {
            opacity: 1;
        }

        .game-info {
            padding: 1.5rem;
        }

        .game-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text-white);
        }

        .game-provider {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Преимущества */
        .features-section {
            background: linear-gradient(135deg, var(--primary-bg), #1a1a2a);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        /* Бонусы */
        .bonuses-section {
            background: var(--primary-bg);
        }

        .bonus-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .bonus-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .bonus-card.main-bonus {
            background: var(--gradient);
            transform: scale(1.05);
        }

        .bonus-amount {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff, var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .bonus-card.main-bonus .bonus-amount {
            -webkit-text-fill-color: white;
        }

        .countdown {
            font-size: 1.2rem;
            color: #ff6b6b;
            font-weight: bold;
            margin-top: 1rem;
        }

        /* Новые секции с текстом */
        .info-section {
            background: var(--primary-bg);
        }

        .info-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-block {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-blue);
        }

        .info-block h3 {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-blue);
        }

        .info-block p {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .info-block:last-child {
            margin-bottom: 0;
        }

        /* Прогресс-бар чтения */
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--gradient);
            z-index: 1001;
            transition: width 0.3s ease;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .nav-desktop, .header-buttons {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .section-title {
                font-size: 2rem;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .bonus-card.main-bonus {
                transform: none;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .info-block {
                padding: 1.5rem;
            }

            .info-block h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .games-filter {
                flex-direction: column;
                align-items: center;
            }

            .filter-btn {
                width: 100%;
                max-width: 200px;
            }
        }

        /* Анимации по скроллу */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }