/* ===== MUSIC PAGE ===== */
.music-player-section {
    padding: 3rem 0 4rem;
    background: #110d0a;
}

.page-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #f0e6dc;
    margin-bottom: 2rem;
}

/* ===== ALBUMS ===== */
.albums-section {
    padding: 4rem 0;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.album-card {
    background: #1a1410;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(212, 197, 181, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.album-card img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1rem;
    border-radius: 8px;
}

.album-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f0e6dc;
    margin-bottom: 0.1rem;
}

.album-card .album-year {
    font-size: 0.85rem;
    color: #8a7a6a;
    margin-bottom: 0.1rem;
}

.album-card .album-tracks {
    font-size: 0.8rem;
    color: #8a7a6a;
    margin-bottom: 1rem;
}

/* ===== STREAMING ===== */
.streaming-section {
    padding: 4rem 0;
    background: #110d0a;
    border-top: 1px solid rgba(212, 197, 181, 0.05);
}

.streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.streaming-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    background: #1a1410;
    border: 1px solid rgba(212, 197, 181, 0.06);
    border-radius: 10px;
    font-weight: 500;
    color: #d4c5b5;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.streaming-card i {
    font-size: 1.3rem;
    color: #c97a5e;
}

.streaming-card:hover {
    background: #261e18;
    border-color: #c97a5e;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.4rem;
    }

    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .streaming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .albums-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .streaming-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .streaming-card {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}