.nav-links {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .nav-item {
            color: #a7a7a7;
            text-decoration: none;
            font-size: 13px;
            font-weight: bold;
            transition: color 0.2s;
        }
        .nav-item:hover {
            color: #00d2ff;
        }
.main-header {
    background: #0b0e14;
    padding: 15px 5px 10px 5px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.footer-logo span {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
}

.header-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
    margin-top: 12px;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.drop-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid var(--glass);
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.drop-btn:active, .nav-dropdown:hover .drop-btn {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0; /* Rata kanan agar tidak keluar layar HP */
    top: 100%;
    margin-top: 5px;
    background: #0f141c;
    min-width: 130px;
    border: 1px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 99999;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.2s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:active {
    background: var(--neon-blue);
    color: #000;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content {
    display: block;
}
:root {
    --bg-color: #0b0e14;
    --card-bg: rgba(255, 255, 255, 0.05);
    --neon-blue: #00d2ff;
    --text-main: #ffffff;
    --text-dim: #a7a7a7;
    --glass: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', sans-serif;
    margin: 0; padding: 0;
    padding-bottom: 160px; /* Jarak agar footer tidak tertutup player */
    scroll-behavior: smooth;
}

.main-header {
    background: #0b0e14;
    padding: 25px 0 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-main);
    letter-spacing: 2px;
}

.main-header .footer-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.footer-logo span {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
}

.header-line {
    width: 60px;
    height: 3px;
    background: var(--neon-blue);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--neon-blue);
    margin-top: 5px;
}

.search-container { padding: 10px; text-align: center; }
.search-box {
    width: 85%; padding: 12px; border-radius: 25px;
    border: 1px solid var(--glass); background: var(--card-bg);
    color: white; outline: none;
}

.playlist { padding: 15px; display: flex; flex-direction: column; gap: 10px; }

.song-item {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 12px;
    background: var(--card-bg); 
    border-radius: 12px;
    cursor: pointer; 
    border: 2px solid transparent; 
    transition: 0.3s;
}

.song-item:active { background: rgba(255, 255, 255, 0.1); }

.song-thumb { width: 55px; height: 55px; border-radius: 8px; margin-right: 15px; object-fit: cover; }

.song-info { flex-grow: 1; min-width: 0; }

.song-title { font-size: 15px; font-weight: bold; display: block; margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.song-artist { font-size: 13px; color: var(--text-dim); }

.btn-download {
    background: rgba(0, 210, 255, 0.1);
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 9px;
    border: 1px solid var(--neon-blue);
    border-radius: 20px;
    margin-left: 10px;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-download:active {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px var(--neon-blue);
    transform: scale(0.9);
}

.desc-box {
    background: var(--card-bg);
    border: 1px solid var(--glass);
    border-left: 4px solid var(--neon-blue);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 15px;
    animation: fadeIn 0.5s ease;
}

.desc-box h4 {
    margin: 0 0 8px 0;
    color: var(--neon-blue);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desc-box p {
    margin: 0;
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.player-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(15, 20, 28, 0.98); backdrop-filter: blur(10px);
    border-top: 1px solid var(--neon-blue); padding: 15px; z-index: 9999;
}

.now-playing { display: flex; align-items: center; margin-bottom: 10px; }
.current-cover { width: 45px; height: 45px; border-radius: 5px; margin-right: 12px; }
.current-details { flex-grow: 1; overflow: hidden; }
.current-title { font-size: 14px; white-space: nowrap; font-weight: bold; display: block; }

.progress-container { display: flex; align-items: center; gap: 10px; margin: 10px 0; }
.progress-bar { flex-grow: 1; height: 5px; background: #333; border-radius: 5px; cursor: pointer; }
.progress-fill { height: 100%; background: var(--neon-blue); width: 0%; border-radius: 5px; box-shadow: 0 0 10px var(--neon-blue); }
.time { font-size: 11px; color: var(--text-dim); min-width: 35px; }

.controls { display: flex; justify-content: center; align-items: center; gap: 30px; }
.ctrl-btn { background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
.play-btn { width: 50px; height: 50px; background: var(--neon-blue); border-radius: 50%; color: black; display: flex; align-items: center; justify-content: center; font-size: 22px; }

.visualizer { display: none; align-items: flex-end; gap: 2px; height: 15px; margin-left: 10px; }
.bar { width: 3px; background: var(--neon-blue); animation: bounce 0.5s infinite alternate; }
@keyframes bounce { from { height: 3px; } to { height: 15px; } }

.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 30px 0; }
.page-link {
    background: var(--card-bg); color: var(--text-main); text-decoration: none;
    padding: 10px 16px; border-radius: 8px; font-size: 14px; font-weight: bold;
    border: 1px solid var(--glass); transition: 0.3s;
}
.page-link.active { background: var(--neon-blue); color: #000; border-color: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }

.main-footer {
    background: linear-gradient(to top, #000, #0b0e14);
    padding: 40px 20px;
    border-top: 1px solid var(--glass);
    text-align: center;
    margin-top: 50px;
}

.footer-desc { font-size: 13px; color: var(--text-dim); max-width: 300px; margin: 0 auto 20px; line-height: 1.6; }

.footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
.footer-social a {
    color: var(--text-main); text-decoration: none; font-size: 12px; font-weight: bold;
    padding: 5px 12px; border: 1px solid var(--glass); border-radius: 20px; transition: 0.3s;
}

.footer-line { height: 1px; background: linear-gradient(to right, transparent, var(--glass), transparent); margin-bottom: 20px; }

.copyright { font-size: 11px; color: var(--text-dim); line-height: 1.8; }

@media (max-width: 480px) {
    .main-footer { padding-bottom: 160px; }
}
@media (max-width: 360px) {
    .page-link { padding: 8px 12px; font-size: 12px; }
} 
.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.3s ease;
}
.visitor-counter:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
}
.visitor-counter .count {
    background: #111;
    padding: 6px 12px;
    border-radius: 8px;
    color: #00ffcc;
    font-weight: bold;
    box-shadow: inset 0 0 8px rgba(0,255,204,0.25);
}