/* home.css - Стили только для Главной страницы */

.hero-image-container img { 
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6)); 
}

.floating-animation { 
    animation: floating 4s ease-in-out infinite; 
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.news-hover-card:hover {
    background: rgba(255,255,255,0.06) !important;
    transform: translateY(-10px);
    border-color: rgba(255,204,0,0.5) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3) !important;
}

/* Неоновые кнопки главной */
.btn-neon-yellow {
    border: 2px solid #fbbf24;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4), inset 0 0 15px rgba(251, 191, 36, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-neon-yellow:hover {
    background: #fbbf24;
    color: #000000;
    text-shadow: none;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.8), 0 0 60px rgba(251, 191, 36, 0.4);
}

.btn-neon-blue {
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4), inset 0 0 15px rgba(59, 130, 246, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-neon-blue:hover {
    background: #3b82f6;
    color: #ffffff;
    text-shadow: 0 0 5px #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 60px rgba(59, 130, 246, 0.4);
}