/* MusicHub Dark Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #121212;
    color: #eee;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background: #1a1a1a;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff4d4d;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.section-title {
    color: white;
    border-bottom: 3px solid #ff4d4d;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.trending-grid, .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 15px;
}

.card, .song-item, .category-card {
    background: #1f1f1f;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.card:hover, .category-card:hover {
    transform: scale(1.05);
}

.download-btn {
    background: #ff4d4d;
    color: white;
    padding: 12px;
    text-align: center;
    display: block;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.download-btn:hover {
    background: #ff3333;
}

.category-icon {
    width: 85px;
    height: 85px;
    background: #333;
    border-radius: 50%;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
}

.category-card strong {
    color: white !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    display: block;
    margin: 12px 0 5px 0;
    font-family: 'Kalam', cursive;
}

.category-card small {
    color: #aaa;
    font-size: 0.95rem;
}

/* Song Item */
.song-item {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 15px;
}

.song-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

/* Trending Card - Screenshot Jaisa */
.trending-grid .card {
    text-align: center;
}

.trending-grid img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 767px) {
    .trending-grid .card {
        display: flex;
        flex-direction: row;
        padding: 0;
    }
    .trending-grid img {
        width: 130px;
        height: 130px;
        border-radius: 12px 0 0 12px;
    }
}