/* ========================================
🏠 HOME PAGE STYLES
======================================== */
.home-news-preview { animation: fadeInUp 0.6s ease; }
.news-preview-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.news-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--neon-pink);
}
.news-preview-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--neon-pink);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}
.news-preview-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.news-preview-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.news-preview-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-main); line-height: 1.3; }
.news-preview-short { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin-bottom: 15px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-preview-footer { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 12px; }
.news-preview-link { color: var(--neon-pink); font-weight: 600; }
.news-preview-link:hover { color: var(--neon-cyan); }

/* ===== О ПРОЕКТЕ ===== */
.about-stats-section { animation: fadeInUp 0.8s ease; }
.about-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex; gap: 30px; align-items: center;
    margin-bottom: 30px; position: relative; overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}
.about-card::before {
    content: ""; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: pulse-bg 4s ease-in-out infinite;
}
@keyframes pulse-bg { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0.8; } }
.about-visual { flex: 0 0 280px; position: relative; z-index: 1; }
.dj-illustration {
    position: relative; width: 100%; height: 280px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(139, 92, 246, 0.4);
}
.dj-character { position: relative; text-align: center; }
.dj-headphones { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
.dj-turntable { position: absolute; bottom: 20px; right: 20px; animation: wobble 3s ease-in-out infinite; }
@keyframes wobble { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.music-notes i { animation: float-note 2s ease-in-out infinite; }
@keyframes float-note { 0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; } 50% { transform: translateY(-15px) rotate(10deg); opacity: 0.7; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.about-content { flex: 1; position: relative; z-index: 1; }

/* ========================================
📊 НОВАЯ СТАТИСТИКА (КАК НА СКРИНШОТЕ 3)
======================================== */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(180deg, rgba(18, 18, 31, 0.8), rgba(10, 10, 18, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 10px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    gap: 20px;
}

.stat-bar-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-bar-value {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 0 15px currentColor;
}

/* Цвета для каждой цифры */
.stat-tracks .stat-bar-value { color: #ff9f1c; }   /* Оранжевый */
.stat-radio .stat-bar-value { color: #00d4ff; }    /* Голубой */
.stat-free .stat-bar-value { color: #ff2a6d; }     /* Розовый */
.stat-24 .stat-bar-value { color: #bc13fe; }       /* Фиолетовый */

.stat-bar-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Адаптив для статистики */
@media (max-width: 768px) {
    .stats-bar {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .stat-bar-value {
        font-size: 28px;
    }
    
    .stat-bar-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-bar-item {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 15px;
    }
    
    .stat-bar-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .stat-bar-value {
        margin-bottom: 0;
    }
}

/* 🔧 ИСПРАВЛЕНИЕ ВИДИМОСТИ ЦИФР */
.stat-value {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #00d4ff, #06b6d4);
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-label { color: var(--text-muted); font-size: 14px; font-weight: 500; }

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .news-preview-image { height: 140px; }
    .news-preview-title { font-size: 16px; }
    .about-card { flex-direction: column; text-align: center; }
    .about-visual { flex: none; width: 100%; }
    .dj-illustration { height: 240px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .about-card { padding: 20px; }
    .dj-illustration { height: 200px; }
    .dj-character i { font-size: 60px !important; }
    .dj-turntable i { font-size: 40px !important; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-value { font-size: 28px; padding: 6px 12px; }
}