        :root {
            --primary-color: #8A2BE2;
            --secondary-color: #4B0082;
            --accent-color: #9370DB;
            --dark-bg: #0A0A1A;
            --light-bg: #1A1A2E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0D0;
            --gradient-purple: linear-gradient(135deg, #8A2BE2 0%, #4B0082 100%);
            --gradient-blue: linear-gradient(135deg, #4169E1 0%, #8A2BE2 100%);
            --shadow-glow: 0 0 20px rgba(138, 43, 226, 0.5);
            --boosty-orange: #FF6B35;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Анимации */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

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

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
            50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.8); }
        }

        /* Главный блок */
        .hero {
            min-height: 100vh;
            background: 
                linear-gradient(135deg, rgba(10, 10, 26, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%),
                url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.25) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #8A2BE2, #FF6B35, #9370DB);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 5s ease infinite;
            text-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-highlight {
            color: #FF6B35;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
        }

        /* Boosty Badge */
        .boosty-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #FF6B35, #FF8C42);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            animation: pulse 2s infinite, glow 2s infinite;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .boosty-badge:hover {
            transform: scale(1.05);
            box-shadow: 0 0 40px rgba(255, 107, 53, 0.9);
        }

        /* Кнопки */
        .btn-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-boosty {
            background: linear-gradient(45deg, #FF6B35, #FF8C42);
            color: white;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
        }

        .btn-boosty:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
            animation: pulse 1s infinite;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(138, 43, 226, 0.5);
            color: var(--text-primary);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(138, 43, 226, 0.2);
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Особенности Boosty */
        .boosty-features {
            padding: 6rem 2rem;
            background: var(--light-bg);
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 4rem;
            color: var(--text-primary);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #8A2BE2, #FF6B35);
            border-radius: 2px;
        }

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

        .feature {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(138, 43, 226, 0.2);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .feature:hover {
            transform: translateY(-10px);
            border-color: #FF6B35;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #FF6B35;
            text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
            animation: float 3s ease-in-out infinite;
        }

        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .feature p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Подкасты на Boosty */
        .podcasts-boosty {
            padding: 6rem 2rem;
            background: 
                linear-gradient(135deg, rgba(10, 10, 26, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%),
                url('https://images.unsplash.com/photo-1589903308904-1010c2294adc?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .podcasts-boosty::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 107, 53, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
            z-index: 1;
        }

        .podcasts-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .podcast-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .podcast-type {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 107, 53, 0.3);
        }

        .podcast-type:hover {
            transform: translateY(-5px);
            border-color: #FF6B35;
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        .podcast-type h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #FF6B35;
        }

        .podcast-type p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Стримы на Boosty */
        .streams-boosty {
            padding: 6rem 2rem;
            background: rgba(255, 107, 53, 0.05);
            text-align: center;
        }

        .streams-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .stream-highlight {
            display: inline-block;
            background: linear-gradient(45deg, #FF6B35, #FF8C42);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 2rem 0;
            animation: pulse 2s infinite;
        }

        /* CTA Boosty */
        .cta-boosty {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
            text-align: center;
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
            padding: 3rem;
            background: rgba(10, 10, 26, 0.8);
            border-radius: 20px;
            border: 2px solid rgba(255, 107, 53, 0.5);
            backdrop-filter: blur(10px);
        }

        .cta-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: float 3s ease-in-out infinite;
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            border-top: 1px solid rgba(255, 107, 53, 0.3);
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #FF6B35;
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 2rem;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .feature {
                padding: 2rem 1.5rem;
            }
        }

        /* Скороллбар */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #8A2BE2, #FF6B35);
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #FF6B35;
        }