/* most-downloaded.css */
/* Glassmorphism card for most downloaded song */
.most-downloaded-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(210, 30%, 12%), hsl(210, 30%, 8%));
    color: #fff;
    text-align: center;
}

.most-downloaded-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.most-downloaded-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.glass-card:hover .most-downloaded-img {
    transform: scale(1.05);
}

.most-downloaded-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.most-downloaded-artist {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffaaaa;
}

.boxed-btn3 {
    background: linear-gradient(45deg, hsl(0, 80%, 55%), hsl(0, 80%, 70%));
    color: #fff !important;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.boxed-btn3:hover {
    background: linear-gradient(45deg, hsl(0, 80%, 70%), hsl(0, 80%, 85%));
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .most-downloaded-section {
        padding: 60px 0;
    }

    .most-downloaded-title {
        font-size: 20px;
    }

    .most-downloaded-artist {
        font-size: 14px;
    }
}