/* Дополнительные стили для герой-секции */

.hero {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%,
        rgba(26, 26, 26, 0.8) 50%,
        rgba(10, 10, 10, 0.7) 100%),
        url('https://images.unsplash.com/photo-1564507004663-b6dfb3e2ede2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 215, 0, 0.1) 0%,
        rgba(0, 255, 157, 0.05) 30%,
        transparent 70%
    );
    pointer-events: none;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        0 0 90px rgba(255, 215, 0, 0.1);
    animation: glow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--color-neon-green);
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px rgba(0, 255, 157, 0.5),
        0 0 40px rgba(0, 255, 157, 0.3);
    animation: neonPulse 2s ease-in-out infinite;
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 0 20px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-neon);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.scroll-indicator i {
    animation: scrollPulse 1.5s infinite;
}

/* Анимации */
@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.5),
            0 0 40px rgba(255, 215, 0, 0.3),
            0 0 60px rgba(255, 215, 0, 0.1);
    }
    to {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.7),
            0 0 60px rgba(255, 215, 0, 0.4),
            0 0 90px rgba(255, 215, 0, 0.2);
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(0, 255, 157, 0.5),
            0 0 40px rgba(0, 255, 157, 0.3);
    }
    50% {
        text-shadow: 
            0 0 25px rgba(0, 255, 157, 0.7),
            0 0 50px rgba(0, 255, 157, 0.4);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.7;
    }
}

/* Адаптация для планшетов */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        gap: 40px;
        padding: 25px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        margin-top: 40px;
    }
    
    .stat-item {
        min-width: auto;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Адаптация для очень маленьких экранов */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-desc {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
}

/* Эффект параллакса для фона */
@media (prefers-reduced-motion: no-preference) {
    .hero {
        background-attachment: fixed;
    }
}

/* Поддержка темного режима */
@media (prefers-color-scheme: dark) {
    .hero {
        background-blend-mode: overlay;
    }
    
    .hero::before {
        background: radial-gradient(
            ellipse at center,
            rgba(255, 215, 0, 0.15) 0%,
            rgba(0, 255, 157, 0.1) 30%,
            transparent 70%
        );
    }
}

.hero-microcopy {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    opacity: 0.9;
    margin-top: -20px;
}
