        body {
            font-family: Arial, sans-serif;
            margin: 0 auto;
            padding: 0;
            background-color: #121212; /* Warna gelap */
            color: #fff;
            max-width: 512px;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: #1e1e1e;
            color: white;
        }
        header img {
            height: 24px;
        }
        header .material-icons {
            font-size: 24px;
            cursor: pointer;
        }
        .genre-scroll {
            display: flex;
            overflow-x: auto;
            padding: 10px;
            background-color: #1c1c1c; /* Background genre scroll */
            white-space: nowrap;
            position: -webkit-sticky; /* Safari */
            position: sticky;
            top: 0;
            z-index: 100; /* Supaya tetap di atas elemen lain */
        }
        .genre-tag {
            display: inline-block;
            margin: 0 8px;
            padding: 8px 12px;
            background-color: #333; /* Warna gelap untuk tag */
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            color: #1DB954;
        }
        .genre-tag.active {
            background-color: #1DB954;
            color: white;
        }
        .song-list {
            padding: 10px;
            margin-bottom: 150px;
        }
        .song-item {
            display: flex;
            align-items: center;
            background-color: #1c1c1c; /* Warna background list */
            border-radius: 8px;
            margin: 10px 0;
            padding: 10px;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        }
        .song-item img {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
            position: relative;
        }
        .song-details {
            flex: 1;
            margin-left: 15px;
        }
        .song-title {
            font-size: 16px;
            font-weight: bold;
            color: #fff;
        }
        .song-artist {
            color: #1DB954;
        }
        .song-price {
            color: #e91e63;
        }
        .song-price-play {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .song-price-play .material-icons {
            font-size: 24px;
            color: #1DB954;
            cursor: pointer;
        }
        nav {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #1e1e1e;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            margin: auto;
            max-width: 512px;
        }
        nav .material-icons {
            font-size: 24px;
            color: white;
            cursor: pointer;
        }
        nav .active {
            color: #1DB954;
        }
        header div {
            display: flex;
            align-items: center;
        }
        header div img {
            margin-right: 8px; /* Jarak antara ikon dan teks */
        }
        header div span {
            font-weight: bold;
            font-size: 18px;
        }
        .music-player {
            position: fixed;
            bottom: 40px; /* Di atas bottom navigation */
            left: 0;
            right: 0;
            background-color: #1c1c1c;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 101;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
            color: #fff;
            max-width:512px;
            margin: auto;
        }
        .player-header {
            margin-bottom: 10px;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            color: white;
        }
        .player-timing {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        #seekBar {
            width: 70%;
            margin: 0 10px;
            -webkit-appearance: none;
            appearance: none;
            height: 4px;
            background-color: #444;
            border-radius: 5px;
            outline: none;
        }
        #seekBar::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #1DB954;
            cursor: pointer;
        }
        .player-controls {
            display: flex;
            justify-content: space-between;
            width: 50%;
        }
        .player-controls .material-icons {
            font-size: 36px;
            color: #1DB954;
            cursor: pointer;
        }
.context-menu {
    position: absolute;
    background-color: #1c1c1c;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Pastikan di atas konten lain */
    width: 150px; /* Atur lebar menu */
}

.menu-item {
    padding: 10px;
    color: #fff;
    cursor: pointer;
}

.menu-item:hover {
    background-color: #333; /* Warna saat hover */
}
.song-title {
    display: flex; /* Menggunakan Flexbox */
    justify-content: space-between; /* Memisahkan konten di antara dua ujung */
    align-items: center; /* Menjaga agar item terpusat secara vertikal */
    margin-bottom: 10px; /* Spasi di bawah judul */
    
}

.song-title .material-icons {
    cursor: pointer; /* Menunjukkan bahwa ini dapat diklik */
    color: #fff; /* Ubah warna ikon sesuai kebutuhan */
}

#downloadModal progress {
    margin-top: 10px;
}



        #promoContent {
            position: relative;
            width: 90%;
            max-width: 500px;
        }
        #promoContent img {
            width: 100%;
            border-radius: 10px;
            cursor: pointer;
        }
        #closePromo {
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 24px;
            color: red;
            cursor: pointer;
        }
        
.music-card-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    background-color: #1c1c1c; /* Background untuk card view */
    white-space: nowrap;
}

.music-card {
    min-width: 200px; /* Ukuran minimum untuk card */
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.music-card-image {
    width: 100%;
    height: 133px; /* Sesuaikan tinggi untuk rasio 1:3 */
    background-size: cover;
    background-position: center;
    position: relative;
}

.music-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Warna gelap dengan transparansi */
    color: #fff;
    padding: 10px;
}

.music-card-title {
    font-size: 16px;
    font-weight: bold;
}

.music-card-artist,
.music-card-genre {
    font-size: 14px;
}

/* Untuk browser berbasis WebKit (Chrome, Safari) */
::-webkit-scrollbar {
    width: 8px; /* Lebar scrollbar vertikal */
    height: 8px; /* Tinggi scrollbar horizontal */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5); /* Warna dan transparansi untuk "thumb" scrollbar */
    border-radius: 4px; /* Membuat sudut sedikit melengkung */
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1); /* Warna latar belakang track scrollbar */
}

/* Untuk Firefox */
html {
    scrollbar-width: thin; /* Mengatur scrollbar menjadi tipis */
    scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.1); /* Warna thumb dan track */
}
        
