@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

body {
    background: linear-gradient(135deg, #1db954, #191414);
    color: white;
    font-family: 'Varela Round', sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar */
nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    height: 65px;
    background-color: #191414;
    padding: 0 20px;
    border-bottom: 2px solid #1db954;
}

nav ul li {
    padding: 0 20px;
    transition: color 0.3s ease;
}

nav ul li:hover {
    color: #1db954;
    cursor: pointer;
}

.brand {
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.3rem;
    gap: 8px;
}

.brand img {
    width: 44px;
    margin-right: 8px;
}

/* Container */
.container {
    background: rgba(0, 0, 0, 0.7);
    background-image: url('bg.jpg');
    background-size: cover;
    background-blend-mode: darken;
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    width: 70%;
}

/* Song Items */
.songItemContainer {
    margin-top: 20px;
}

.songItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    margin: 10px 0;
    padding: 8px 12px;
    transition: background 0.3s ease;
}

.songItem:hover {
    background: rgba(29, 185, 84, 0.3);
}

.songItem img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.songItem:hover img {
    transform: scale(1.1);
}

/* Song controls inside songItem */
.songlistplay {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timestamp {
    font-size: 14px;
    min-width: 50px;
}

.songItemPlay {
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
}

.songItemPlay:hover {
    transform: scale(1.3);
    color: #1db954;
}

/* Bottom Player */
.bottom {
    background-color: #191414;
    padding: 20px;
    border-top: 2px solid #1db954;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icons {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.icons i {
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
    font-size: 30px;
}

.icons i:hover {
    transform: scale(1.2);
    color: #1db954;
}

#myProgressBar {
    width: 80%;
    margin: 0 0 10px 0;
    accent-color: #1db954;
    border-radius: 5px;
    height: 6px;
}

.songInfo {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.downloadBtn {
    margin-left: 10px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.downloadBtn:hover {
    color: #1db954;
}
