
.top10-hero-section {
    background: linear-gradient(135deg, #1a4a6b 0%, #2a5a7b 50%, #f8aa7a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffc311;
    animation: bounce 2s infinite;
}

.hero-title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: #ffc311;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: #f8aa7a;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4a6b;
    margin-bottom: 10px;
}

.stat-label {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.ranking-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ranking-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #1a4a6b;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.ranking-list {
    max-width: 1200px;
    margin: 0 auto;
}

.ranking-item {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ranking-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ranking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #f8aa7a, #ffc311);
}

.ranking-position {
    flex-shrink: 0;
}

.medal {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.medal-1 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.medal-2 {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.4);
}

.medal-3 {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    box-shadow: 0 5px 15px rgba(205, 127, 50, 0.4);
}

.position-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8aa7a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.music-cover {
    position: relative;
    flex-shrink: 0;
}

.cover-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-cover:hover .cover-overlay {
    opacity: 1;
}

.play-btn {
    background: #f8aa7a;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.music-info {
    flex: 1;
    min-width: 0;
}

.music-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a4a6b;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-artist {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 1rem;
}

.music-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.genre-badge {
    background: #f8aa7a;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.duration,
.release-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.music-stats {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.stat-item {
    text-align: center;
    min-width: 70px;
}

.stat-item i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
}

.stat-item.downloads i {
    color: #28a745;
}

.stat-item.plays i {
    color: #007bff;
}

.stat-item.likes i {
    color: #f8aa7a;
}

.stat-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a4a6b;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.music-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.info-btn {
    background: #007bff;
    color: white;
}

.download-btn {
    background: #28a745;
    color: white;
}

.share-btn {
    background: #6c757d;
    color: white;
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #e9ecef;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .ranking-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .music-stats {
        justify-content: center;
    }
    
    .music-details {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ranking-item {
        padding: 20px;
    }
    
    .music-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 60px;
    }
}


