/* 🎤 Bruno Mars - Love Album Style */

/* Global */
body {
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #2b2430, #3b1a3b, #7b1e5a);
    margin: 0;
    color: #ffd9e8;
    text-align: center;
}

/* Coeurs décoratifs */
body::before,
body::after {
    content: "❤ ❤ ❤ ❤ ❤";
    font-size: 26px;
    color: rgba(255, 92, 145, 0.7);
    position: fixed;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    pointer-events: none;
}

body::after {
    right: 0;
    transform: translateY(-50%) rotate(90deg);
}

body::before {
    left: 0;
}

/* Header */
header {
    padding: 40px 10px 10px;
}

.cover {
    width: 280px;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(255, 158, 226, 0.4);
    border: 3px solid rgba(255, 158, 226, 0.7);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.cover:hover {
    transform: scale(1.03);
    filter: brightness(1.12);
}

h1 {
    font-size: 42px;
    margin-bottom: 3px;
    text-shadow: 0 0 8px rgba(255,140,200,0.7);
}

.subtitle {
    font-size: 20px;
    color: #ff9ccd;
    font-style: italic;
}

/* Tracklist title */
.track-title {
    margin-top: 25px;
    font-size: 28px;
    letter-spacing: 1px;
    color: #ffc2e2;
}

/* Track cards */
.track {
    background: rgba(255,255,255,0.1);
    margin: 14px auto;
    max-width: 520px;
    padding: 18px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform .3s, background .3s;
    border: 2px solid rgba(255, 158, 226, 0.4);
    box-shadow: 0 0 15px rgba(255, 108, 168, 0.3);
}

.track:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

/* Custom Player */
.player {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
    margin-top: 10px;
}

.play-btn {
    background: #ff87c5;
    color: #2b0a25;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform .2s, background .3s;
    box-shadow: 0 0 10px rgba(255, 90, 150, 0.6);
}

.play-btn:hover {
    background: #ff9edf;
    transform: scale(1.05);
}

.progress-container {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.25);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffb3e6, #ff4fa2);
    border-radius: 5px;
    transition: width .1s linear;
}

.time {
    font-size: 13px;
    min-width: 38px;
    color: #ffd9e8;
}

/* Mobile */
@media (max-width: 500px) {
    body::before,
    body::after {
        display: none;
    }
    .play-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

