/* ═══════════════════════════════════════════  
 VOSIER FAMILY
 ═══════════════════════════════════════════ */  
  
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }  
  
:root {  
 --neon-primary: #ef4444; --neon-secondary: #f97316; --neon-accent: #dc2626; --neon-cyan: #06b6d4;  
 --dark-bg: #050508; --glass-bg: rgba(10, 10, 20, 0.4); --glass-border: rgba(255, 255, 255, 0.06);  
 --text-primary: #ffffff; --text-secondary: #888; --text-dim: #555;  
 --ease: cubic-bezier(0.4, 0, 0.2, 1); --corner-size: 40px; --corner-thickness: 2px;  
}  
  
html, body { 
    height: 100dvh; 
    overflow: hidden; 
    font-family: 'Inter', system-ui, -apple-system, sans-serif; 
    background: var(--dark-bg); 
    color: var(--text-primary); 
    -webkit-font-smoothing: antialiased; 
}  

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); border-left: 1px solid rgba(255, 255, 255, 0.05); }
::-webkit-scrollbar-thumb { background: rgba(239, 68, 68, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(239, 68, 68, 0.6); box-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }

.hud-clock { position: fixed; bottom: 40px; left: 15%; z-index: 1000; text-align: left; pointer-events: none; color: var(--neon-primary); display: flex; flex-direction: column; gap: 5px; }
.clock-top-row { display: flex; align-items: center; gap: 12px; }
.clock-time { font-size: 1.4rem; font-weight: bold; letter-spacing: 2px; line-height: 1; }
.clock-date { font-size: 0.65rem; color: var(--text-dim); letter-spacing: 1px; text-transform: lowercase; }
.sys-status-label { font-size: 0.6rem; color: #fff; border: 1px solid rgba(255,255,255,0.2); display: inline-block; padding: 2px 8px; border-radius: 4px; letter-spacing: 2px; line-height: 1; }

.hud-footer { position: fixed; bottom: 40px; left: 15%; right: 15%; z-index: 9999; pointer-events: none; display: flex; justify-content: flex-end; align-items: center; font-family: 'Inter', sans-serif; font-size: 0.75rem; color: #ffffff; letter-spacing: 1px; }
.footer-center { pointer-events: auto; opacity: 0.5; transition: opacity 0.3s; }
.footer-center:hover { opacity: 1; }
.footer-right { display: block; }
.hud-footer a { color: #ffffff; text-decoration: none; transition: all 0.3s; position: relative; z-index: 10000; }
.hud-footer a:hover { color: var(--neon-primary); text-shadow: 0 0 10px var(--neon-primary); }
.footer-label { font-weight: 600; color: #ffffff; margin-right: 4px; }
.divider { color: rgba(255, 255, 255, 0.3); margin: 0 4px; }
.copyright { color: #ffffff; }
  
.corner { display: none !important; }
  
.start-overlay { position: fixed; inset: 0; z-index: 99999; background: #050508; display: flex; justify-content: center; align-items: center; transition: all 1.2s cubic-bezier(0.7, 0, 0.3, 1); overflow: hidden; }  
.start-overlay.hidden { opacity: 0; visibility: hidden; transform: scale(1.1); }  
.overlay-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at center, rgba(239, 68, 68, 0.05) 0%, transparent 70%), url('https://www.transparenttextures.com/patterns/stardust.png'); opacity: 0.3; animation: bgMove 60s linear infinite; }  
@keyframes bgMove { from { background-position: 0 0; } to { background-position: 1000px 1000px; } }  
.start-content { text-align: center; position: relative; z-index: 2; }  
.start-icon-wrapper { position: relative; width: 150px; height: 150px; margin: 0 auto 40px; display: flex; align-items: center; justify-content: center; }  
.icon-ring, .icon-ring-outer { position: absolute; border-radius: 50%; border: 1px solid rgba(239, 68, 68, 0.1); }  
.icon-ring { width: 100px; height: 100px; border-top: 2px solid var(--neon-primary); animation: spin 3s linear infinite; }  
.icon-ring-outer { width: 140px; height: 140px; border-bottom: 1px solid var(--neon-primary); opacity: 0.3; animation: spin 10s linear reverse infinite; }  
.start-text-group h2 { font-family: 'Orbitron', sans-serif; font-size: 2rem; letter-spacing: 15px; color: #fff; margin-bottom: 10px; text-shadow: 0 0 20px rgba(239, 68, 68, 0.5); }  
.start-separator { width: 40px; height: 2px; background: var(--neon-primary); margin: 20px auto; box-shadow: 0 0 10px var(--neon-primary); }  
.typing-text { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--neon-primary); letter-spacing: 3px; margin-bottom: 30px; opacity: 0.8; }  
.click-prompt { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 4px; text-transform: uppercase; animation: blink 2s infinite; }  
@keyframes blink { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.8; } }  
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }  
  
.video-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; }  
.video-bg video { width: 100%; height: 100%; object-fit: cover; }  
.video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(5,5,8,0.88) 0%, rgba(5,5,8,0.5) 50%, rgba(5,5,8,0.7) 100%), linear-gradient(to right, rgba(5,5,8,0.9) 0%, transparent 40%, transparent 60%, rgba(5,5,8,0.6) 100%); }  
.scanline { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px); pointer-events: none; }  
  
.main-layout { position: relative; z-index: 10; height: 100dvh; display: grid; grid-template-columns: 1fr 0fr 1fr; transition: grid-template-columns .6s var(--ease); overflow: hidden; }  
.main-layout.lyrics-mode { grid-template-columns: 0.8fr 1fr 1fr; }  
  
.left-section { display: flex; flex-direction: column; justify-content: center; padding: 60px 60px 60px 80px; position: relative; overflow: hidden; transition: padding .6s var(--ease), opacity .6s var(--ease); }  
.main-layout.lyrics-mode .left-section { padding: 60px 30px 60px 50px; }  
.brand-tag { font-family: 'Orbitron', monospace; font-size: .75rem; letter-spacing: 6px; color: var(--text-secondary); margin-bottom: 40px; font-weight: 500; }  
.title-block { position: relative; }  
.main-title { font-family: 'Orbitron', monospace; line-height: 1; margin-bottom: 20px; animation: titleFloat 6s ease-in-out infinite; }  
.title-line { display: block; font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; font-style: italic; color: var(--text-primary); animation: neonPulse 4s ease-in-out infinite alternate; letter-spacing: -2px; }  
.title-line .dot { color: var(--neon-primary); text-shadow: 0 0 20px rgba(239,68,68,0.8), 0 0 40px rgba(239,68,68,0.4); }  

@keyframes titleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes neonPulse { 0% { text-shadow: 0 0 10px rgba(239,68,68,0.2), 0 0 20px rgba(239,68,68,0.1), 0 0 40px rgba(239,68,68,0.05); } 100% { text-shadow: 0 0 15px rgba(239,68,68,0.5), 0 0 30px rgba(239,68,68,0.3), 0 0 60px rgba(239,68,68,0.15); } }
  
.subtitle-wrapper { display: flex; flex-direction: row; align-items: stretch; gap: 16px; margin-top: 16px; }
.title-accent { width: 3px; height: auto; background: linear-gradient(to bottom, var(--neon-primary), transparent); border-radius: 2px; flex-shrink: 0; }  
.subtitle { font-size: .85rem; line-height: 1.7; color: var(--text-secondary); max-width: 380px; font-weight: 300; transition: opacity .4s var(--ease); margin: 0; text-align: left; }  
.main-layout.lyrics-mode .subtitle-wrapper { opacity: 0; height: 0; overflow: hidden; pointer-events: none; }  
.social-links { display: flex; gap: 16px; margin-top: 40px; }  
.social-icon { color: var(--text-secondary); transition: all .3s var(--ease); display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1px solid transparent; text-decoration: none; }  
.social-icon:hover { color: var(--neon-primary); border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.05); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(239,68,68,0.15); }  
  
.center-section { display: flex; align-items: center; justify-content: center; padding: 60px 20px; overflow: hidden; opacity: 0; transition: opacity .5s var(--ease) .15s; pointer-events: none; }  
.main-layout.lyrics-mode .center-section { opacity: 1; pointer-events: auto; }  
.lyrics-container { width: 100%; max-width: 100%; height: 70vh; max-height: 600px; }  

.lyrics-box { 
    background: rgba(10, 5, 8, 0.85); 
    border: 1px solid rgba(239, 68, 68, 0.85); border-radius: 16px; padding: 24px 28px; height: 100%; display: flex; flex-direction: column; position: relative; box-shadow: 0 0 25px rgba(239, 68, 68, 0.3), inset 0 0 15px rgba(239, 68, 68, 0.2); transition: all 0.3s var(--ease); animation: holoGlitchLoop 5s infinite; 
}  

.lyrics-box::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(239, 68, 68, 0.08) 2px, rgba(239, 68, 68, 0.08) 4px); pointer-events: none; z-index: 0; border-radius: 16px; overflow: hidden; }
.lyrics-box > * { position: relative; z-index: 1; }

.lyrics-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }  
.lyrics-tag { font-family: 'Orbitron', monospace; font-size: .6rem; letter-spacing: 3px; color: var(--neon-primary); }  
.lyrics-track-info { font-size: .65rem; color: var(--neon-primary); font-family: 'JetBrains Mono', monospace; text-shadow: 0 0 5px rgba(255, 67, 239, 0.726); opacity: 0.8; }  
.lyrics-scroll { flex: 1; overflow-y: auto; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: rgba(239,68,68,0.2) transparent; padding-right: 8px; }  
.lyrics-scroll::-webkit-scrollbar { width: 3px; }  
.lyrics-scroll::-webkit-scrollbar-track { background: transparent; }  
.lyrics-scroll::-webkit-scrollbar-thumb { background: rgba(239,68,68,0.3); border-radius: 3px; }  
.lyrics-content { padding: 8px 0; }  

.lyric-line { 
    font-size: .95rem; line-height: 2.2; color: rgba(255,255,255,0.25); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); padding: 6px 12px; border-radius: 8px; cursor: pointer; transform: scale(0.98); transform-origin: left center;
}  
.lyric-line:hover { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.03); }  
.lyric-line.active { color: var(--text-primary); text-shadow: 0 0 15px rgba(239, 68, 68, 0.6); transform: scale(1.05); background: linear-gradient(90deg, rgba(239, 68, 68, 0.15) 0%, transparent 100%); border-left: 3px solid var(--neon-primary); font-weight: 500; }  
.lyric-line.past { color: rgba(255,255,255,0.4); transform: scale(1); }  
  
.right-section { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; position: relative; overflow: hidden; transition: padding .6s var(--ease); }  
.system-info { position: absolute; top: 24px; right: 32px; text-align: right; z-index: 20; }  
.sys-line { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-bottom: 4px; }  
.sys-label { font-family: 'JetBrains Mono', monospace; font-size: .6rem; color: var(--text-dim); letter-spacing: 1px; }  
.sys-value { font-family: 'JetBrains Mono', monospace; font-size: .6rem; color: var(--neon-primary); letter-spacing: 1px; }  
.sys-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim); }  
.sys-dot.active { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); animation: dot-blink 2s ease-in-out infinite; }  
@keyframes dot-blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }  
  
.player-wrapper { 
    display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; max-width: 500px; transition: transform .6s var(--ease); z-index: 100; 
}  

#visualizerCanvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 512px;
    height: 512px;
    z-index: 10;
    pointer-events: none;
}
  
.visualizer-container { position: relative; width: 260px; height: 260px; display: flex; justify-content: center; align-items: center; }  
.cover-circle { width: 160px; height: 160px; border-radius: 50%; overflow: visible; position: relative; z-index: 20; }  
.cover-circle::before { 
    content: ''; position: absolute; inset: -4px; border-radius: 50%; 
    border: 6px solid rgba(168, 85, 247, 0.9); 
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.8), inset 0 0 20px rgba(6, 182, 212, 0.8); 
    pointer-events: none; z-index: 5; 
    animation: pulseIdle 3s ease-in-out infinite alternate; 
}
@keyframes pulseIdle { 
    0% { transform: scale(1); border-color: rgba(168, 85, 247, 0.7); box-shadow: 0 0 15px rgba(6, 182, 212, 0.5); } 
    100% { transform: scale(1.02); border-color: rgba(6, 182, 212, 1); box-shadow: 0 0 35px rgba(168, 85, 247, 0.9); } 
}

.cover-circle img { 
    width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; 
    z-index: 2; position: relative; box-shadow: 0 0 30px rgba(10,10,20,0.8); 
    background-color: var(--dark-bg); 
}  

.mobile-track-info { display: none; text-align: center; margin-bottom: 20px; width: 100%; }
.mobile-track-title { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: 'Orbitron', sans-serif;}
.mobile-track-artist { font-size: 0.8rem; color: var(--neon-primary); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 1px;}
  
.player-controls { width: 100%; max-width: 420px; }  
.progress-container { margin-bottom: 24px; cursor: pointer; padding: 10px 0; }  
.progress-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; position: relative; }  
.progress-filled { height: 100%; background: linear-gradient(90deg, #06b6d4, #f97316); border-radius: 1.5px; width: 0%; position: relative; transition: width .1s linear; }  
.progress-thumb { position: absolute; top: 50%; left: 0%; transform: translate(-50%,-50%); width: 14px; height: 14px; background: var(--text-primary); border-radius: 50%; box-shadow: 0 0 10px #fff; opacity: 0; transition: opacity .2s; }  
.progress-container:hover .progress-thumb { opacity: 1; }  
.time-display { display: flex; justify-content: space-between; margin-top: 8px; font-family: 'JetBrains Mono', monospace; font-size: .65rem; color: var(--text-dim); }  

.player-buttons-container { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.controls-main { display: flex; align-items: center; justify-content: center; gap: 15px; }  
.ctrl-btn { background: none; border: none; color: var(--text-secondary); cursor: pointer; padding: 10px; border-radius: 8px; transition: all .25s var(--ease); display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }  
.ctrl-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }  
.ctrl-btn.active { color: var(--neon-primary); }  
.play-btn { width: 60px; height: 60px; background: linear-gradient(135deg, var(--neon-primary), var(--neon-accent)); border-radius: 50%; color: white !important; box-shadow: 0 4px 20px rgba(239,68,68,0.3); margin: 0 10px; }  
.play-btn:hover { transform: scale(1.08); box-shadow: 0 6px 30px rgba(239,68,68,0.5); background: linear-gradient(135deg, #f87171, var(--neon-primary)); }  

.controls-sub { display: flex; align-items: center; justify-content: center; gap: 30px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.controls-sub .ctrl-btn { opacity: 0.6; padding: 6px; }
.controls-sub .ctrl-btn:hover { opacity: 1; transform: translateY(-2px); background: none; color: var(--neon-primary); }
.lyrics-toggle-btn.active { color: var(--neon-primary) !important; opacity: 1 !important; }  
.lyrics-toggle-btn.active::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--neon-primary); box-shadow: 0 0 6px var(--neon-primary); }  

#modeBtn { position: relative; }  
.mode-label { position: absolute; bottom: -2px; right: -2px; font-size: .45rem; font-weight: 700; color: var(--neon-primary); font-family: 'JetBrains Mono', monospace; pointer-events: none; }  
#eqBtn { position: relative; }

.volume-control-image { position: relative; display: flex; align-items: center; gap: 4px; opacity: 0.6; transition: opacity 0.3s; }  
.volume-control-image:hover { opacity: 1; }
.volume-slider-wrap { width: 0; overflow: hidden; transition: width .3s var(--ease); }  
.volume-control-image:hover .volume-slider-wrap { width: 70px; }  
.volume-slider { -webkit-appearance: none; appearance: none; width: 70px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; outline: none; cursor: pointer; }  
.volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 10px; height: 10px; background: var(--neon-primary); border-radius: 50%; cursor: pointer; box-shadow: 0 0 8px rgba(239,68,68,0.4); }  
.volume-slider::-moz-range-thumb { width: 10px; height: 10px; background: var(--neon-primary); border-radius: 50%; cursor: pointer; border: none; box-shadow: 0 0 8px rgba(239,68,68,0.4); }  
  
.playlist-panel { position: fixed; right: -400px; top: 0; bottom: 0; width: 360px; max-width: 100vw; background: rgba(10,10,20,0.95); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border-left: 1px solid var(--glass-border); z-index: 500; transition: right .4s var(--ease); display: flex; flex-direction: column; }  
.playlist-panel.open { right: 0; }  
.playlist-header { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid transparent; }  
.playlist-header h3 { font-family: 'Orbitron', monospace; font-size: .8rem; letter-spacing: 4px; color: var(--neon-primary); }  
.playlist-close { background: none; border: none; color: var(--text-secondary); font-size: 1.5rem; padding: 10px; cursor: pointer; transition: all .2s; }  
.playlist-close:hover { color: var(--text-primary); }  

.playlist-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.05); }
.plist-tab { flex: 1; background: none; border: none; padding: 14px; color: var(--text-dim); font-family: 'Orbitron', monospace; font-size: 0.75rem; letter-spacing: 2px; cursor: pointer; transition: all 0.3s; }
.plist-tab.active { color: var(--neon-primary); background: rgba(239, 68, 68, 0.05); box-shadow: inset 0 -2px 0 var(--neon-primary); }
.plist-tab:hover:not(.active) { color: #fff; background: rgba(255, 255, 255, 0.02); }
.fav-active { filter: drop-shadow(0 0 10px rgba(239,68,68,0.6)); transform: scale(1.1); }

.playlist-controls { padding: 0 24px 16px; display: flex; flex-direction: column; gap: 10px; border-bottom: 1px solid var(--glass-border); margin-top: 15px; }
.playlist-controls input, .playlist-controls select { width: 100%; padding: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; transition: border 0.3s; }
.playlist-controls input:focus, .playlist-controls select:focus { border-color: var(--neon-primary); }
.playlist-controls select option { background: var(--dark-bg); color: #fff; }  
.playlist-items { flex: 1; overflow-y: auto; padding: 12px; scrollbar-width: thin; scrollbar-color: rgba(239,68,68,0.2) transparent; }  
.playlist-item { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 10px; cursor: pointer; transition: all .25s var(--ease); border: 1px solid transparent; margin-bottom: 4px; }  
.playlist-item:hover { background: rgba(255,255,255,0.03); border-color: var(--glass-border); }  
.playlist-item.active { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.2); }  
.playlist-item-cover { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; background: rgba(255,255,255,0.05); flex-shrink: 0; }  
.playlist-item-info { flex: 1; min-width: 0; }  
.playlist-item-title { font-size: .95rem; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; }  
.playlist-item-artist { font-size: .75rem; color: var(--text-dim); margin-top: 4px; }  
.playlist-item-duration { font-family: 'JetBrains Mono', monospace; font-size: .7rem; color: var(--text-dim); flex-shrink: 0; }  
.playlist-item.active .playlist-item-title { color: var(--neon-primary); }  
.playlist-item-playing { display: none; gap: 2px; align-items: flex-end; height: 16px; }  
.playlist-item.active .playlist-item-playing { display: flex; }  
.playlist-item.active .playlist-item-duration { display: none; }  
.playing-bar { width: 3px; background: var(--neon-primary); border-radius: 2px; animation: playing-bars .8s ease-in-out infinite; }  
.playing-bar:nth-child(1) { height: 60%; animation-delay: 0s; } .playing-bar:nth-child(2) { height: 100%; animation-delay: .2s; } .playing-bar:nth-child(3) { height: 40%; animation-delay: .4s; }  
@keyframes playing-bars { 0%,100% { height: 40%; } 50% { height: 100%; } }  
.playlist-footer-mobile { display: none; padding: 20px; border-top: 1px solid var(--glass-border); text-align: center; background: rgba(10,10,20,0.9); }
.playlist-footer-mobile p { font-size: 0.7rem; color: var(--text-dim); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 2px; }
.mobile-artist-links { display: flex; justify-content: center; gap: 15px; }
.mobile-artist-links a { color: #fff; font-family: 'Orbitron', monospace; font-size: 0.8rem; text-decoration: none; transition: color 0.3s; padding: 5px;}
.mobile-artist-links a:hover { color: var(--neon-primary); text-shadow: 0 0 10px var(--neon-primary); }

.about-modal { 
    position: fixed; inset: 0; z-index: 100000; background: transparent; 
    display: flex; align-items: flex-end; padding-bottom: 90px; 
    opacity: 1; transition: opacity 0.4s var(--ease); pointer-events: none; 
}
.about-modal.hidden { opacity: 0; pointer-events: none; }

#aboutModal, #tourModal, #hotkeyModal, #eqModal { justify-content: flex-end; padding-right: 40px; }

.holo-projector {
    position: absolute; width: 300px; height: 35px; 
    background: linear-gradient(to top, rgba(239, 68, 68, 0.95) 0%, rgba(239, 68, 68, 0.1) 70%, transparent 100%);
    clip-path: polygon(35% 0, 65% 0, 52% 100%, 48% 100%); 
    transform-origin: bottom center; opacity: 0; transform: translateY(5px) scaleY(0.5);
    transition: all 0.4s var(--ease); z-index: -1; pointer-events: none;
    animation: projectorFlicker 3s infinite alternate;
}
.holo-projector::after {
    content: ''; position: absolute; bottom: 0; left: 48%; width: 4%; height: 6px;
    background: #fff; border-radius: 50%; box-shadow: 0 0 15px #ef4444, 0 0 30px #ef4444;
}
.about-modal:not(.hidden) .holo-projector { opacity: 1; transform: translateY(0) scaleY(1); }

@keyframes projectorFlicker {
    0% { filter: brightness(1) drop-shadow(0 0 10px rgba(239,68,68,0.5)); }
    50% { filter: brightness(1.3) drop-shadow(0 0 20px rgba(239,68,68,0.8)); }
    100% { filter: brightness(0.9) drop-shadow(0 0 5px rgba(239,68,68,0.3)); }
}

.about-content { 
    background: rgba(10, 5, 8, 0.85); 
    border: 1px solid rgba(239, 68, 68, 0.85); padding: 40px; border-radius: 16px; 
    text-align: center; max-width: 400px; width: 90%; position: relative; 
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.3), inset 0 0 15px rgba(239, 68, 68, 0.2); 
    transform: translateY(0); transition: transform 0.4s var(--ease); animation: holoGlitchLoop 5s infinite; 
    pointer-events: auto;
}
.about-content::before {
    content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(239, 68, 68, 0.08) 2px, rgba(239, 68, 68, 0.08) 4px); pointer-events: none; z-index: 0; border-radius: 16px; overflow: hidden;
}
.about-content > * { position: relative; z-index: 1; }
.about-modal.hidden .about-content { transform: translateY(30px); }

.close-about { position: absolute; top: 10px; right: 10px; background: none; border: none; color: var(--text-secondary); font-size: 1.5rem; padding: 10px; transition: color 0.3s; z-index: 10;}
.close-about:hover { color: var(--neon-primary); }
.about-content h2 { color: #fff; font-family: 'Orbitron', sans-serif; letter-spacing: 4px; margin-bottom: 15px; }
.about-content p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; margin-bottom: 15px; }
.about-brand { margin-top: 20px; font-size: 0.7rem; color: var(--neon-primary); letter-spacing: 2px; }
.about-contact { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.about-contact h3 { color: var(--neon-primary); font-family: 'Orbitron', monospace; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 8px; }
.contact-link { color: #ffffff; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.contact-link:hover { color: var(--neon-primary); text-shadow: 0 0 10px var(--neon-primary); }

.artist-profile-box { padding-top: 50px; }
.artist-avatar { width: 80px; height: 80px; margin: -80px auto 20px; background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 0 20px rgba(239,68,68,0.4); border: 3px solid #14141e; }
.artist-avatar span { font-family: 'Orbitron', sans-serif; font-size: 2rem; color: #fff; font-weight: bold; }
.artist-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; position: relative; z-index: 2; display: none; }
.avatar-ring { display: none; }
.artist-role { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--neon-secondary); letter-spacing: 1px; margin-bottom: 15px; text-transform: uppercase; }
.artist-ig-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; padding: 10px 20px; background: rgba(239,68,68,0.1); border: 1px solid var(--neon-primary); border-radius: 30px; color: #fff; font-size: 0.8rem; text-decoration: none; transition: all 0.3s; }
.artist-ig-btn:hover { background: var(--neon-primary); box-shadow: 0 0 15px var(--neon-primary); }

.coming-soon-box { padding: 40px 20px; border: 1px dashed rgba(239, 68, 68, 0.4); border-radius: 12px; background: rgba(239, 68, 68, 0.05); margin-top: 20px;}
.glitch-text { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; color: var(--neon-primary); letter-spacing: 4px; animation: blink 2s infinite; font-weight: bold; }
.coming-soon-box p { margin-top: 10px; font-size: 0.8rem; color: var(--text-dim); }

.hotkey-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; text-align: left; }
.hk-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hk-row span { font-size: 0.85rem; color: var(--text-secondary); font-family: 'Inter', sans-serif;}
.hk-row kbd { background: rgba(255,255,255,0.1); padding: 4px 8px; border-radius: 6px; font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--neon-primary); border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 2px 0 rgba(255,255,255,0.1); }

/* ═══ CUSTOM 10-BAND EQ SLIDERS ═══ */
#eqModal .eq-content-wrapper { 
    max-width: 650px !important; 
    padding: 30px !important;
    background: rgba(8, 5, 12, 0.95);
    border: 1px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.15), inset 0 0 20px rgba(6, 182, 212, 0.1);
    pointer-events: auto;
}
#eqModal .eq-content-wrapper::before {
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(6, 182, 212, 0.05) 2px, rgba(6, 182, 212, 0.05) 4px);
}

.eq-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-align: left;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.eq-visualizer-container {
    width: 100%;
    height: 120px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.eq-visualizer-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 10px 10px;
    pointer-events: none;
}

#eqCurveCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.eq-sliders-wrapper { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    height: 160px; 
    padding: 0 10px;
}
.eq-band { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    height: 100%; 
    justify-content: flex-end; 
    position: relative;
}
.eq-slider { 
    -webkit-appearance: none; appearance: none;
    writing-mode: vertical-lr; direction: rtl; 
    width: 6px; height: 130px; 
    background: rgba(255,255,255,0.05); 
    border-radius: 3px; outline: none; margin-bottom: 15px; cursor: pointer;
    position: relative;
    z-index: 2;
}
.eq-slider::-webkit-slider-thumb { 
    -webkit-appearance: none; width: 24px; height: 8px; 
    background: #fff; border-radius: 2px; cursor: pointer; 
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.8), inset 0 0 2px rgba(0,0,0,0.5); 
}
.eq-track-glow {
    position: absolute;
    bottom: 30px;
    width: 2px;
    height: calc(50% - 15px);
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    z-index: 1;
    pointer-events: none;
    display: none; 
}

.eq-label { 
    font-family: 'JetBrains Mono', monospace; 
    font-size: 0.6rem; color: var(--neon-cyan); 
    margin-top: 5px;
    opacity: 0.8;
}
.eq-presets-btn { 
    margin-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); 
    padding-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.eq-btn-preset { 
    background: rgba(6, 182, 212, 0.05); 
    border: 1px solid rgba(6, 182, 212, 0.3); 
    color: var(--text-secondary); 
    padding: 8px 16px; border-radius: 4px; 
    font-family: 'Orbitron', monospace; font-size: 0.65rem; letter-spacing: 1px; 
    cursor: pointer; transition: all 0.3s; 
}
.eq-btn-preset:hover { 
    background: rgba(6, 182, 212, 0.15); 
    color: #fff; border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3); 
}
.eq-btn-preset.active {
    background: rgba(6, 182, 212, 0.2); 
    color: #fff; border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5); 
}

/* ═══ SHARE STORY TEMPLATE (OFF-SCREEN) ═══ */
.share-card-template { position: absolute; left: -9999px; width: 1080px; height: 1920px; background: #050508; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Orbitron', sans-serif; color: #fff; overflow: hidden; }
.share-gradient-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(239, 68, 68, 0.2) 0%, transparent 60%), radial-gradient(circle at 0% 100%, rgba(249, 115, 22, 0.1) 0%, transparent 40%); }
.share-card-content { position: relative; z-index: 2; text-align: center; width: 100%; display: flex; flex-direction: column; align-items: center; }
.share-card-header { font-size: 24px; letter-spacing: 12px; color: var(--neon-primary); margin-bottom: 120px; opacity: 0.8; }
.share-cover-wrapper { position: relative; width: 700px; height: 700px; margin-bottom: 100px; }
.share-cover-ring { position: absolute; inset: -30px; border: 4px solid var(--neon-primary); border-radius: 50%; opacity: 0.3; }
#shareCover { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: 0 0 80px rgba(0,0,0,0.8), 0 0 40px rgba(239, 68, 68, 0.3); }
.share-info { margin-bottom: 150px; }
#shareTitle { font-size: 80px; font-weight: 900; font-style: italic; margin-bottom: 20px; text-transform: uppercase; text-shadow: 0 0 30px rgba(255,255,255,0.2); }
#shareArtist { font-size: 36px; font-family: 'JetBrains Mono', monospace; color: var(--neon-primary); letter-spacing: 6px; text-transform: uppercase; }
.share-card-footer { width: 80%; }
.footer-line { width: 100%; height: 2px; background: linear-gradient(to right, transparent, var(--neon-primary), transparent); margin-bottom: 30px; opacity: 0.5; }
.share-card-footer span { font-size: 20px; letter-spacing: 4px; opacity: 0.6; }

/* ═══ SYSTEM GUARDIAN OVERLAY ═══ */
.sys-guard-modal { position: fixed; inset: 0; z-index: 9999999; background: rgba(5,5,8,0.98); display: flex; justify-content: center; align-items: center; text-align: center; padding: 20px; transition: opacity 0.5s var(--ease); }
.sys-guard-modal.hidden { opacity: 0; pointer-events: none; visibility: hidden; }
.sys-guard-content { background: rgba(10, 5, 8, 0.6); border: 1px solid rgba(239, 68, 68, 0.5); padding: 40px; border-radius: 16px; max-width: 450px; box-shadow: 0 0 30px rgba(239, 68, 68, 0.2), inset 0 0 20px rgba(239, 68, 68, 0.1); position: relative; animation: holoGlitchLoop 5s infinite; }
.sys-guard-icon { margin-bottom: 15px; animation: pulseIdle 2s infinite; }
.sys-msg-en { color: #fff; font-family: 'Orbitron', sans-serif; font-size: 0.95rem; margin-bottom: 10px; line-height: 1.6; }
.sys-msg-id { color: var(--text-secondary); font-size: 0.8rem; margin-bottom: 30px; font-style: italic; line-height: 1.5; }
.sys-wait-box { border-top: 1px dashed rgba(239,68,68,0.3); padding-top: 20px; }
.sys-wait-box p { color: var(--text-dim); font-size: 0.75rem; margin-bottom: 5px; font-family: 'JetBrains Mono', monospace; }
.countdown-timer { font-family: 'Orbitron', sans-serif; font-size: 3rem; color: var(--neon-primary); font-weight: bold; text-shadow: 0 0 15px rgba(239,68,68,0.5); margin-top: 10px; }
.sys-btn { margin-top: 20px; padding: 12px 30px; background: rgba(239, 68, 68, 0.1); border: 1px solid var(--neon-primary); color: #fff; font-family: 'Orbitron', sans-serif; letter-spacing: 2px; border-radius: 30px; cursor: pointer; transition: all 0.3s; font-size: 0.8rem; }
.sys-btn:hover { background: var(--neon-primary); box-shadow: 0 0 20px rgba(239,68,68,0.5); }
.sys-btn.hidden { display: none; }

@keyframes holoGlitchLoop {
    0%, 92%, 100% { transform: scale(1) skewX(0deg); filter: hue-rotate(0deg); opacity: 1; border-color: rgba(239, 68, 68, 0.85); box-shadow: 0 0 25px rgba(239, 68, 68, 0.3), inset 0 0 15px rgba(239, 68, 68, 0.2); }
    94% { transform: scale(0.98) skewX(2deg); opacity: 0.8; filter: hue-rotate(90deg); border-color: rgba(239, 68, 68, 1); box-shadow: 0 0 40px rgba(239, 68, 68, 0.6), inset 0 0 20px rgba(239, 68, 68, 0.4); }
    96% { transform: scale(1.02) skewX(-2deg); opacity: 0.9; }
    98% { transform: scale(0.99) skewX(1deg); opacity: 0.5; filter: hue-rotate(-90deg); }
}

/* ═══════════════════════════════════════════  
 VOSIER "GLASS IMAGE" PLAYER — TOTAL OVERHAUL  
 ═══════════════════════════════════════════ */  

.main-player-box {
    background: transparent;
    border: none;
    padding: 30px; width: 100%; max-width: 440px;
    display: flex; flex-direction: column; align-items: center; gap: 25px;
    box-shadow: none;
    position: relative; z-index: 10; transition: all 0.5s ease;
}

.right-section .visualizer-container {
    width: 280px; height: 280px;
    position: relative; margin: 0; display: flex; justify-content: center; align-items: center;
}

.cover-circle { width: 180px; height: 180px; position: relative; z-index: 5; display: flex; justify-content: center; align-items: center; }
.cover-glow-ring {
    position: absolute; inset: -8px; border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4 0%, #a855f7 50%, #ec4899 100%); 
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4), 0 0 40px rgba(236, 72, 153, 0.3);
    z-index: 1; animation: pulseIdle 3s ease-in-out infinite alternate;
}

.visualizer-container canvas { display: none; } 

.track-info-central { text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; }
.main-track-title {
    font-size: 1.15rem; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 60%;
    font-family: 'Orbitron', sans-serif; letter-spacing: 1px;
}
.main-track-artist { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; font-weight: 300; }
.track-info-separator { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

.progress-wrapper { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.right-section .progress-container { flex: 1; margin: 0; padding: 0; cursor: pointer; }
.right-section .progress-bar { height: 3px; background: rgba(255,255,255,0.08); border-radius: 1.5px; }
.right-section .progress-filled { height: 100%; background: linear-gradient(90deg, #06b6d4, #f97316); border-radius: 1.5px; }
.right-section .progress-thumb {
    width: 10px; height: 10px; background: #fff; border-radius: 50%;
    box-shadow: 0 0 10px #fff; opacity: 1;
    transform: translate(-50%,-50%); transition: transform 0.2s;
}
.progress-container:hover .progress-thumb { transform: translate(-50%,-50%) scale(1.3); }

.time-display { font-family: 'Inter', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; width: 35px; text-align: center; }

.controls-main-row { width: 100%; display: flex; align-items: center; justify-content: center; gap: 18px; }
.ctrl-btn-image { background: none; border: none; color: rgba(255,255,255,0.8); cursor: pointer; padding: 6px; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.ctrl-btn-image:hover { color: #fff; transform: scale(1.1); text-shadow: 0 0 10px #fff; }

.play-btn-image { width: 60px; height: 60px; position: relative; color: #fff !important; }
.play-btn-image::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid transparent;
    background: linear-gradient(rgba(10,5,8,0.3), rgba(10,5,8,0.3)) padding-box, linear-gradient(135deg, #06b6d4, #ec4899) border-box; 
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4), 0 0 25px rgba(236, 72, 153, 0.3); transition: all 0.3s;
}
.play-btn-image:hover::before { box-shadow: 0 0 25px rgba(6, 182, 212, 0.6), 0 0 40px rgba(236, 72, 153, 0.5); }
.play-btn-image svg { position: relative; z-index: 5; }
.ctrl-btn-image.active { color: #a855f7; filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.8)); }

.controls-sub-row { width: 100%; display: flex; align-items: center; justify-content: center; gap: 20px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.04); margin-top: 5px; }
.ctrl-btn-image-sub { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; padding: 4px; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.ctrl-btn-image-sub:hover { color: rgba(255,255,255,0.9); transform: translateY(-1px); }
.ctrl-btn-image-sub.active { color: var(--neon-cyan); filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.8)); }

/* ██████████████████████████████████████████████████
   SPLIT MODAL
   ██████████████████████████████████████████████████ */

.split-modal {
    display: flex !important; flex-direction: row !important;
    width: 100vw !important; height: 100vh !important;
    max-width: 100vw !important; position: fixed !important; inset: 0 !important;
    border: none !important; border-radius: 0 !important;
    background: rgba(3, 3, 5, 0.98) !important;
    backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important;
    overflow: hidden !important; margin: 0 !important; padding: 0 !important;
    z-index: 100000; opacity: 1; transition: opacity 0.5s ease, transform 0.5s ease;
}
.split-modal.hidden { opacity: 0; pointer-events: none; transform: scale(1.02); }

.close-split {
    position: absolute !important; top: 35px !important; right: 45px !important;
    z-index: 100001 !important; background: rgba(255,255,255,0.05) !important; 
    border: 1px solid rgba(255,255,255,0.1) !important; color: #fff !important; 
    width: 45px !important; height: 45px !important; border-radius: 50% !important;
    font-size: 1.2rem !important; display: flex !important; justify-content: center !important; 
    align-items: center !important; cursor: pointer !important; transition: all 0.4s ease !important; 
}
.close-split:hover { background: var(--neon-primary) !important; border-color: var(--neon-primary) !important; transform: rotate(90deg) !important; box-shadow: 0 0 20px rgba(239, 68, 68, 0.4) !important; }

.split-modal .split-left {
    flex: none !important; width: 35vw !important; height: 100vh !important;
    display: flex !important; flex-direction: column !important; justify-content: center !important; align-items: center !important;
    position: relative !important; overflow: hidden !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 5px 0 30px rgba(0,0,0,0.5) !important; z-index: 10 !important;
}
.split-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: grayscale(20%) brightness(0.6); transition: filter 1s ease; }
.split-left:hover .split-bg-img { filter: grayscale(0%) brightness(0.8); }
.split-left-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(3,3,5,1) 0%, rgba(3,3,5,0.3) 40%, rgba(3,3,5,0.6) 100%); }
.split-content-left { position: relative; z-index: 3; text-align: center; padding: 40px; }
.split-subtitle { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; letter-spacing: 6px; color: var(--neon-cyan); text-transform: uppercase; margin-bottom: 15px; display: block; opacity: 0.9; }
.split-title { font-family: 'Orbitron', sans-serif; font-size: clamp(3rem, 5vw, 6rem); font-weight: 900; color: #fff; letter-spacing: 2px; line-height: 1.1; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }

.split-modal .split-right {
    flex: none !important; width: 65vw !important; height: 100vh !important;
    display: flex !important; flex-direction: column !important;
    position: relative !important; overflow: hidden !important;
    background: radial-gradient(circle at top right, rgba(15,15,20,1) 0%, rgba(5,5,8,1) 100%) !important;
}

/* ═══ FIX FOTO GEPENG ABOUT & TOUR ═══ */
.split-modal .split-right-top {
    display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
    overflow-x: auto !important; overflow-y: hidden !important; gap: 4px !important;
    align-items: center !important;
    flex: none !important; width: 100% !important; 
    height: 280px !important; min-height: 280px !important; max-height: 280px !important;
    background: rgba(0,0,0,0.5) !important; 
    border-bottom: 1px solid rgba(255,255,255,0.03) !important;
    position: relative !important; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.split-modal .split-right-top::-webkit-scrollbar { height: 3px; }
.split-modal .split-right-top::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.split-modal .gallery-scroll {
    display: contents !important; 
}

.split-modal .split-img-box {
    flex: 0 0 220px !important; width: 220px !important; height: 100% !important; 
    position: relative !important; overflow: hidden !important;
    background: #08080a !important; margin: 0 !important; padding: 0 !important;
    filter: grayscale(30%) brightness(0.8); transition: all 0.5s ease !important;
}
.split-modal .split-img-box:hover { filter: grayscale(0%) brightness(1.1); transform: scale(1.02); z-index: 5; box-shadow: 0 0 20px rgba(0,0,0,0.8); }
.split-modal .split-img-box img { width: 100% !important; height: 100% !important; object-fit: cover !important; position: static !important; display: block !important; }

.ig-split-box { background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(236,72,153,0.1)) !important; display: flex !important; align-items: center !important; justify-content: center !important; border-right: 1px solid rgba(255,255,255,0.05) !important;}
.split-ig-btn { display: flex; flex-direction: column; align-items: center; gap: 15px; color: rgba(255,255,255,0.7); text-decoration: none; font-family: 'Orbitron', sans-serif; letter-spacing: 3px; font-size: 0.8rem; transition: all 0.4s; }
.split-ig-btn svg { filter: drop-shadow(0 0 5px rgba(255,255,255,0.2)); transition: all 0.4s; }
.split-ig-btn:hover { color: #fff; transform: translateY(-3px); }
.split-ig-btn:hover svg { filter: drop-shadow(0 0 10px var(--neon-primary)); stroke: var(--neon-primary); }

.split-modal .split-right-bottom {
    flex: 1 !important; width: 100% !important; padding: 50px 70px !important;
    overflow-y: auto !important; 
}
.split-right-bottom h2 { 
    font-family: 'Orbitron', sans-serif; font-size: 1rem; color: var(--neon-cyan); 
    margin-bottom: 25px; letter-spacing: 5px; text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; display: inline-block;
}
.split-right-bottom p { 
    font-family: 'Inter', sans-serif; font-size: 1.05rem; color: rgba(255,255,255,0.8); 
    line-height: 2; margin-bottom: 25px; font-weight: 300; max-width: 900px;
}

.bio-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-contact-split p { margin-bottom: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.5); font-family: 'JetBrains Mono', monospace; }
.about-contact-split a { color: #fff; text-decoration: none; transition: 0.3s; }
.about-contact-split a:hover { color: var(--neon-primary); text-shadow: 0 0 10px var(--neon-primary); }
.about-social-links {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}
.social-icon {
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}
.social-icon svg {
    width: 24px;
    height: 24px;
}

/* ═══ ABOUT CONTACT SECTION ═══ */
.about-contact-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* — Contact Channels — */
.contact-channels {
    display: flex;
    gap: 16px;
    margin-bottom: 35px;
}
.contact-channel {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.contact-channel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.contact-channel:hover {
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.contact-channel:hover::before {
    opacity: 1;
}

.channel-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.06);
    border: 1px solid rgba(6, 182, 212, 0.1);
    flex-shrink: 0;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}
.channel-icon svg {
    color: var(--neon-cyan);
    transition: all 0.35s ease;
}
.contact-channel:hover .channel-icon {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.channel-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
    min-width: 0;
}
.channel-type {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
    transition: color 0.3s;
}
.contact-channel:hover .channel-type {
    color: var(--neon-cyan);
}
.channel-detail {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contact-channel:hover .channel-detail {
    color: #fff;
}

/* — Location — */
.contact-location {
    margin-top: 0;
}
.location-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.location-label svg {
    color: var(--neon-cyan);
    flex-shrink: 0;
}
.location-label span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
}
.location-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
}
.location-map:hover {
    border-color: rgba(6, 182, 212, 0.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.location-map iframe {
    display: block;
    filter: grayscale(50%) brightness(0.65) contrast(1.2);
    transition: filter 0.5s ease;
}
.location-map:hover iframe {
    filter: grayscale(0%) brightness(0.85) contrast(1.05);
}

.split-footer { margin-top: auto; padding-top: 30px; font-size: 0.7rem; color: rgba(255,255,255,0.2); letter-spacing: 2px; font-family: 'Orbitron', sans-serif;}

@media (max-width: 768px) {
    .split-modal { flex-direction: column !important; overflow-y: auto !important; }
    .split-modal .split-left { width: 100vw !important; height: 45vh !important; border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important; box-shadow: none !important; }
    .split-modal .split-right { width: 100vw !important; height: auto !important; overflow: visible !important; }
    .split-modal .split-right-top { height: 200px !important; min-height: 200px !important; max-height: 200px !important; }
    .split-modal .split-img-box { flex: 0 0 160px !important; width: 160px !important; }
    .split-modal .split-right-bottom { padding: 40px 25px !important; overflow-y: visible !important; }
    .split-title { font-size: 3rem; }
    .close-split { top: 20px !important; right: 20px !important; font-size: 1rem !important; width: 35px !important; height: 35px !important; background: rgba(0,0,0,0.5) !important; }
}

@media (max-width: 1024px) {
    .main-layout { display: flex; flex-direction: column; height: 100dvh; overflow: hidden; }
    .left-section { flex: 0 0 auto; padding: 40px 20px 10px; align-items: center; text-align: center; }
    .right-section { flex: 1; padding: 10px 15px 30px; justify-content: center; display: flex; }
    .cover-circle { width: 200px; height: 200px; } 
    .visualizer-container { width: 280px; height: 280px; }
    .hud-clock { top: 15px; left: 15px; padding: 0; }
    .clock-time { font-size: 1.1rem; } .clock-date { font-size: 0.55rem; }
    .hud-footer { left: 15px; right: 15px; bottom: 15px; font-size: 0.65rem;}
}

@media (max-width: 768px) {
    :root { --corner-size: 22px; }
    .corner-tl, .corner-tr { top: 8px; } .corner-bl, .corner-br { bottom: 8px; } .corner-tl, .corner-bl { left: 8px; } .corner-tr, .corner-br { right: 8px; }
    
    .system-info, .hud-clock, .hud-footer, .subtitle-wrapper, .volume-control-image { display: none !important; } 
    .playlist-footer-mobile { display: block; }
    .title-line { font-size: 2rem; letter-spacing: 2px; }
    .brand-tag { margin-bottom: 8px; font-size: .6rem; letter-spacing: 4px; }
    
    .left-section { padding: 30px 20px 10px; z-index: 10; }
    .right-section { padding: 10px 15px 20px; z-index: 10; align-items: center;}
    
    .main-player-box { padding: 20px; gap: 15px; max-width: 100%; width: 100%; }
    .visualizer-container { width: 100%; max-width: 250px; height: auto; aspect-ratio: 1/1; margin: 0 auto; flex: 0 0 auto; }
    .cover-circle { width: 160px; height: 160px; }

    .main-track-title { font-size: 1.1rem; }
    .controls-main-row { gap: 12px; }
    .play-btn-image { width: 50px; height: 50px; }
    .ctrl-btn-image { padding: 5px; }
    .controls-sub-row { gap: 15px; padding-top: 10px; }
    
    .center-section { position: absolute; top: 60px; bottom: 180px; left: 0; right: 0; padding: 0 16px; z-index: 100; pointer-events: none; opacity: 0; transform: translateY(20px); transition: all 0.4s var(--ease); }  
    .main-layout.lyrics-mode .center-section { pointer-events: auto; opacity: 1; transform: translateY(0); }
    
    .main-layout.lyrics-mode .left-section { display: none; }
    .main-layout.lyrics-mode .visualizer-container { display: none; }
    
    .main-layout.lyrics-mode .right-section { justify-content: flex-end; padding-bottom: 20px; }
    .main-layout.lyrics-mode .main-player-box { background: transparent; padding: 15px; margin-top: auto; }
    
    .lyrics-container { height: 100%; max-height: 100%; margin: 0; }  
    .lyrics-box { padding: 16px; border-radius: 12px; background: rgba(10, 5, 8, 0.95); backdrop-filter: none; animation: none; box-shadow: none;} 
    .lyric-line { font-size: 0.95rem; line-height: 2.2; padding: 6px 8px; }
    
    .about-modal { background: rgba(5,5,8,0.8); align-items: center !important; justify-content: center !important; padding: 20px !important; }
    #aboutModal, #tourModal, #hotkeyModal, #eqModal { padding-left: 20px; padding-right: 20px; }
    .sys-guard-modal { background: rgba(5,5,8,0.95); }
}

@media (max-width: 380px) {
    .cover-circle { width: 120px; height: 120px; }
    .visualizer-container { max-width: 180px; }
    .main-track-title { font-size: 0.95rem; }
    .play-btn-image { width: 45px; height: 45px; }
    .controls-sub-row { gap: 10px; }
}

#artistGalleryContainer.gallery-scroll {
    display: grid !important;
    grid-template-rows: repeat(3, 1fr) !important; 
    grid-auto-columns: 120px !important; 
    grid-auto-flow: column !important; 
    gap: 4px !important; padding: 4px !important;
    width: 100% !important; height: 100% !important;
    overflow-x: auto !important; overflow-y: hidden !important;
    scroll-behavior: smooth;
    scrollbar-width: none !important; 
}
#artistGalleryContainer.gallery-scroll::-webkit-scrollbar { display: none !important; }

#artistGalleryContainer.gallery-scroll .split-img-box {
    width: 100% !important; height: 100% !important; 
    position: relative !important; overflow: hidden !important;
}
#artistGalleryContainer.gallery-scroll .ig-split-box {
    grid-row: span 3; 
}

.gallery-nav {
    position: absolute; top: 0; height: 100%; width: 50px;
    background: none; border: none; cursor: pointer; z-index: 20;
    color: #fff; opacity: 0.5; transition: 0.3s;
}
.gallery-nav.prev { left: 0; background: linear-gradient(to right, rgba(0,0,0,0.9), transparent); }
.gallery-nav.next { right: 0; background: linear-gradient(to left, rgba(0,0,0,0.9), transparent); }
.gallery-nav:hover { opacity: 1; color: var(--neon-cyan); }
.gallery-nav.disabled { opacity: 0; pointer-events: none; }

.artist-cross-nav {
    height: 50px; background: rgba(5,5,8,0.9); border-top: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; gap: 15px;
}
.cross-nav-links { display: flex; gap: 15px; }
.cross-nav-links a { color: #888; text-decoration: none; font-family: 'Orbitron', sans-serif; font-size: 0.8rem; transition: 0.3s; }
.cross-nav-links a:hover, .cross-nav-links a.active { color: var(--neon-cyan); }

.split-modal .split-left { position: relative; justify-content: center; }
.split-content-left { transform: translateY(-40px); } 
.split-title { font-family: 'Orbitron', sans-serif; font-size: clamp(3rem, 6vw, 5rem); }

.left-bottom-nav { position: absolute; bottom: 40px; left: 0; width: 100%; text-align: center; z-index: 5;}
.left-bottom-nav p { color: #888; font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 8px; font-family: 'Inter', sans-serif;}
.artist-cross-nav-links { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 15px; 
    font-size: 0.9rem; 
    font-family: 'Inter', sans-serif; 
}
.artist-cross-nav-links a { color: var(--neon-cyan); text-decoration: none; transition: 0.3s; font-weight: 500;}
.artist-cross-nav-links a:hover, .artist-cross-nav-links a.active { color: #fff; text-shadow: 0 0 10px #fff; }
.artist-cross-nav-links span { color: #555; }

.split-modal .split-right { padding: 40px; justify-content: center; background: #08080a; }
.gallery-wrapper { display: flex; align-items: center; position: relative; height: 500px; margin-bottom: 20px;}

.artist-gallery-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-columns: 240px !important; 
    grid-auto-flow: column;
    gap: 12px; padding: 0 45px;
    width: 100%; height: 100%;
    overflow-x: auto; overflow-y: hidden;
    scroll-behavior: smooth; scrollbar-width: none;
}
.artist-gallery-grid::-webkit-scrollbar { display: none; }

.artist-gallery-grid .split-img-box { width: 100%; height: 100%; cursor: auto; overflow: hidden; position: relative; }
.artist-gallery-grid .split-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.artist-gallery-grid .split-img-box:hover img { transform: scale(1.1); }

.gallery-nav { background: none; border: none; cursor: pointer; position: absolute; z-index: 10; padding: 10px; transition: 0.3s; opacity: 0.7;}
.gallery-nav:hover { opacity: 1; filter: drop-shadow(0 0 10px var(--neon-cyan)); transform: scale(1.1);}
.gallery-nav.prev { left: -15px; }
.gallery-nav.next { right: -15px; }

.split-divider { border: 0; height: 3px; background: #fff; margin: 10px 0 30px 0; opacity: 0.9;}

.split-right-bottom-grid { 
    display: flex; flex-direction: row; gap: 40px; align-items: flex-start; 
    padding: 0 45px; width: 100%;
}
.bio-col { flex: 1.2; display: flex; flex-direction: column; overflow: hidden;}
.music-col { flex: 1; display: flex; flex-direction: column; width: 100%; }

.section-sub-title { 
    font-family: 'Orbitron', sans-serif; font-size: 0.9rem; color: var(--neon-cyan); 
    letter-spacing: 3px; margin-bottom: 15px; text-transform: uppercase; 
}

.artist-mini-playlist { 
    background: rgba(10,5,8,0.6); 
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 12px; 
    max-height: 220px; 
    overflow-y: auto; 
    padding: 10px; 
    scrollbar-width: thin;
}
.artist-track-item { 
    display: flex; align-items: center; gap: 12px; padding: 10px; 
    border-radius: 8px; cursor: pointer; transition: 0.3s; 
    margin-bottom: 5px; border: 1px solid transparent; background: rgba(0,0,0,0.3);
}
.artist-track-item:hover { 
    background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); 
}
.artist-track-cover { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }
.artist-track-info { flex: 1; overflow: hidden; }
.artist-track-title { 
    font-size: 0.85rem; color: #fff; white-space: nowrap; 
    overflow: hidden; text-overflow: ellipsis; font-weight: 600; font-family: 'Orbitron', sans-serif;
}
.artist-track-artist { font-size: 0.65rem; color: #aaa; margin-top: 4px; }
.artist-track-duration { font-size: 0.7rem; color: #888; font-family: 'JetBrains Mono', monospace; }

@media (max-width: 768px) {
    .split-right-bottom-grid { flex-direction: column; gap: 25px; padding: 0 25px;}
    .music-col { max-height: none; }
}

.artist-socials { display: flex; gap: 15px; }
.art-soc-icon { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; border: 2px solid #fff; color: #fff; text-decoration: none; transition: 0.3s; cursor: pointer;}
.art-soc-icon:hover { background: #fff; color: #000; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,255,255,0.3);}

.lightbox-modal { position: fixed; inset: 0; z-index: 200000; background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center; opacity: 1; transition: 0.3s; cursor: auto;}
.lightbox-modal.hidden { opacity: 0; pointer-events: none; }
.close-lightbox { position: absolute; top: 25px; right: 35px; background: none; border: none; color: #fff; font-size: 2.5rem; transition: 0.3s; cursor: pointer;}
.close-lightbox:hover { color: var(--neon-cyan); transform: scale(1.1); }
.lightbox-content img { max-width: 90vw; max-height: 90vh; border: 2px solid rgba(255,255,255,0.1); border-radius: 4px; box-shadow: 0 0 40px rgba(0,0,0,0.8); }

@media (max-width: 768px) {
    .artist-gallery-grid { grid-auto-columns: 120px; padding: 0 25px;}
    .gallery-wrapper { height: 200px; }
    .split-divider { margin: 20px 0; }
    .art-soc-icon { width: 35px; height: 35px; }
}

/* =========================================
   MOBILE TOUCH OPTIMIZATION & CLEANUP (VOSIER)
   ========================================= */

.holo-projector {
    display: none !important;
}

@media (max-width: 768px) {
    .right-section .progress-container { padding: 20px 0 !important; }
    .right-section .progress-bar { height: 6px !important; border-radius: 3px !important; }
    .right-section .progress-filled { border-radius: 3px !important; }
    .right-section .progress-thumb { width: 16px !important; height: 16px !important; }
    
    .controls-main-row { gap: 15px !important; }
    
    .play-btn-image { 
        flex: 0 0 70px !important; 
        height: 70px !important; 
        padding: 0 !important; 
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .play-btn-image svg { width: 30px !important; height: 30px !important; }
    
    .ctrl-btn-image { padding: 12px !important; }
    .ctrl-btn-image svg { width: 26px !important; height: 26px !important; }
    
    .controls-sub-row { gap: 10px !important; padding-top: 15px !important; flex-wrap: wrap !important; }
    .ctrl-btn-image-sub { padding: 12px !important; }
    .ctrl-btn-image-sub svg { width: 24px !important; height: 24px !important; }
}
/* =========================================    
   FIX MOBILE PLAYER KETUTUPAN (VOSIER)
   ========================================= */
@media (max-width: 768px) {
    .right-section { 
        padding: 10px !important; 
        justify-content: center !important; 
        overflow-y: auto !important; 
        scrollbar-width: none !important; 
    }
    .right-section::-webkit-scrollbar { display: none !important; }
    
    .main-player-box { 
        padding: 10px !important; 
        gap: 12px !important; 
        margin-top: 0 !important;
    }

    .visualizer-container { max-width: 200px !important; height: 200px !important; }
    .cover-circle { width: 140px !important; height: 140px !important; }
    
    .controls-main-row { gap: 15px !important; }
    .play-btn-image { flex: 0 0 60px !important; height: 60px !important; }
    .play-btn-image svg { width: 26px !important; height: 26px !important; }
    
    .controls-sub-row { 
        padding-top: 5px !important; 
        padding-bottom: 20px !important; 
        gap: 8px !important;
    }
}

@media (max-height: 680px) and (max-width: 768px) {
    .visualizer-container { max-width: 170px !important; height: 170px !important; }
    .cover-circle { width: 110px !important; height: 110px !important; }
    .main-player-box { gap: 8px !important; }
    .controls-sub-row { padding-bottom: 30px !important; }
}
/* =========================================
   FIX PLAYER KETUTUP LIRIK DI MOBILE
   ========================================= */
@media (max-width: 768px) {
    .main-layout.lyrics-mode .right-section {
        justify-content: flex-end !important;
        padding-bottom: 30px !important;
    }
    
    .main-layout.lyrics-mode .center-section {
        bottom: 180px !important;
    }
}

@media (max-height: 680px) and (max-width: 768px) {
    .main-layout.lyrics-mode .right-section {
        padding-bottom: 20px !important;
    }
    .main-layout.lyrics-mode .center-section {
        bottom: 150px !important;
    }
}

/* =========================================
   INTEGRASI ORGANIC BLOB VISUALIZER (FIXED LAYERING 100%)
   ========================================= */
#visualizerCanvas {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 800px !important; 
    height: 800px !important;
    z-index: 1 !important; 
    pointer-events: none !important;
    display: block !important;
}

.cover-circle::before {
    display: none !important;
}

/* RING NEON COVER */
.cover-glow-ring {
    display: block !important;
    position: absolute;
    inset: -3px; 
    border-radius: 50%;
    border: 3px solid #00f5ff; 
    
    background: transparent !important; 
    
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.8), 0 0 25px rgba(0, 245, 255, 0.5);
    z-index: 2 !important; 
    pointer-events: none;
    animation: pulseRing 4s ease-in-out infinite alternate;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 10px rgba(0, 245, 255, 0.6), 0 0 20px rgba(0, 245, 255, 0.4);
        border-color: rgba(0, 245, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 245, 255, 0.9), 0 0 35px rgba(0, 245, 255, 0.7);
        border-color: rgba(0, 245, 255, 1);
    }
}

.cover-circle img, #coverImage {
    position: relative !important;
    border-radius: 50% !important;
    z-index: 10 !important; 
    display: block !important;
    background-color: var(--dark-bg); 
}

.cover-circle {
    z-index: 10 !important;
    position: relative;
}
/* =========================================
   NEW PLAYLIST MODAL UI & QUEUE SYSTEM
   ========================================= */
#playlistModal .split-right {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.playlist-tabs-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
    scrollbar-width: none; 
}
.playlist-tabs-scroll::-webkit-scrollbar {
    display: none; 
}
.plist-tab {
    background: rgba(255,255,255,0.05);
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-dim);
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.plist-tab.active {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(6, 182, 212, 0.1);
}
.plist-tab:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
#playlistModal .playlist-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
#playlistModal .playlist-controls input,
#playlistModal .playlist-controls select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    flex: 1;
}
#playlistModal .playlist-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

/* ADD TO QUEUE BUTTON (+Q) */
.add-queue-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.add-queue-btn:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(6, 182, 212, 0.1);
    transform: scale(1.1);
}
/* =========================================
   SPOTIFY STYLE PLAYLIST MODAL
   ========================================= */
.spotify-modal {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex; justify-content: center; align-items: center;
}
.spotify-modal.hidden { display: none !important; }

/* ========================
   SPOTIFY 3-COLUMN APP LAYOUT
   ======================== */
.sp-app {
    width: 95vw; max-width: 1280px; height: 88vh;
    display: grid;
    grid-template-columns: 240px 1fr 260px;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.07);
    animation: spAppIn 0.28s ease-out;
}
@keyframes spAppIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

/* ---- LEFT SIDEBAR ---- */
.sp-lib {
    background: #000;
    display: flex; flex-direction: column;
    overflow: hidden; border-right: 1px solid rgba(255,255,255,0.06);
}
.sp-lib-head {
    padding: 18px 16px 14px;
    display: flex; align-items: center; gap: 10px;
    color: #b3b3b3; font-weight: 700; font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0;
}
.sp-lib-icon { color: var(--neon-cyan); font-size: 1.1rem; }
.sp-lib-search {
    padding: 12px 12px 10px;
    display: flex; flex-direction: column; gap: 8px; flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sp-lib-search input {
    background: rgba(255,255,255,0.1); border: 1px solid transparent; color: #fff;
    padding: 9px 14px; border-radius: 20px; outline: none;
    font-family: 'Inter', sans-serif; font-size: 0.82rem;
    width: 100%; box-sizing: border-box;
}
.sp-lib-search input:focus { border-color: var(--neon-cyan); background: rgba(0,0,0,0.5); }
.sp-lib-search .custom-select-wrap { width: 100%; }
.sp-lib-search .custom-select-wrap select { width: 100%; padding: 9px 32px 9px 14px; font-size: 0.82rem; border-radius: 20px; }
.sp-lib-nav {
    display: flex; flex-direction: column; gap: 2px;
    padding: 10px 8px; flex: 1; overflow-y: auto;
}
.sp-lib-nav .plist-tab {
    background: transparent; border: none; color: #b3b3b3;
    padding: 11px 14px; border-radius: 8px; font-size: 0.88rem;
    cursor: pointer; transition: 0.2s; font-family: 'Inter', sans-serif;
    text-align: left; display: flex; align-items: center; gap: 10px;
    white-space: nowrap;
}
.sp-lib-nav .plist-tab::before { content: '♫'; font-size: 0.75rem; opacity: 0.45; }
.sp-lib-nav .plist-tab.active { background: rgba(255,255,255,0.1); color: #fff; font-weight: 600; }
.sp-lib-nav .plist-tab.active::before { color: var(--neon-cyan); opacity: 1; }
.sp-lib-nav .plist-tab:hover:not(.active) { background: rgba(255,255,255,0.07); color: #fff; }

/* ---- CENTER CONTENT ---- */
.sp-center {
    display: flex; flex-direction: column;
    background: linear-gradient(180deg, #1e202b 0%, #121212 28%);
    overflow: hidden;
}
.sp-center-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sp-center-scroll { flex: 1; overflow-y: auto; }

/* ---- RIGHT PANEL: NOW PLAYING ---- */
.sp-np-panel {
    background: #0d0d0d;
    border-left: 1px solid rgba(255,255,255,0.07);
    display: flex; flex-direction: column;
    overflow-y: auto; padding: 20px 16px; gap: 14px;
}
.sp-np-cover-wrap {
    width: 100%; aspect-ratio: 1; border-radius: 10px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.8); flex-shrink: 0;
}
.sp-np-cover-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-np-meta { padding: 2px; }
.sp-np-title {
    color: #fff; font-weight: 700; font-size: 1rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px;
}
.sp-np-artist { color: #b3b3b3; font-size: 0.85rem; }
.sp-np-divider { border: none; border-top: 1px solid rgba(255,255,255,0.09); margin: 2px 0; }
.sp-np-bio-label { color: #fff; font-weight: 700; font-size: 0.88rem; }
.sp-np-bio { display: flex; flex-direction: column; gap: 12px; }
.sp-np-artist-photo {
    width: 100%; border-radius: 8px; object-fit: cover;
    max-height: 150px; object-position: top; display: block;
}
.sp-np-bio-text { color: #b3b3b3; font-size: 0.78rem; line-height: 1.65; }

.close-spotify {
    background: rgba(255,255,255,0.08); border: none; color: #fff;
    width: 32px; height: 32px; border-radius: 50%;
    cursor: pointer; font-size: 1rem; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.close-spotify:hover { background: rgba(255,255,255,0.2); }

.spotify-header {
    display: flex; align-items: flex-end; gap: 20px;
    padding: 40px 30px 25px;
}
.spotify-header-img {
    width: 180px; height: 180px; border-radius: 8px; object-fit: cover;
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.spotify-header-info { color: #fff; }
.spotify-type { font-size: 0.8rem; letter-spacing: 1px; font-weight: 600; }
.spotify-title { font-size: 3.5rem; font-weight: 800; margin: 5px 0; line-height: 1.1; font-family: 'Orbitron', sans-serif;}
.spotify-desc { color: #a7a7a7; font-size: 0.9rem; margin-top: 10px; }

.spotify-controls-row {
    padding: 0 30px; display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; flex-wrap: wrap; gap: 15px;
}
.playlist-tabs-scroll { display: flex; gap: 8px; }
.plist-tab {
    background: rgba(255,255,255,0.08); border: none; color: #fff;
    padding: 8px 18px; border-radius: 20px; font-size: 0.85rem;
    cursor: pointer; transition: 0.2s; font-family: 'Inter', sans-serif;
}
.plist-tab.active { background: #fff; color: #000; font-weight: bold; }
.plist-tab:hover:not(.active) { background: rgba(255,255,255,0.2); }

.playlist-search-box { display: flex; gap: 10px; align-items: center; }
.playlist-search-box input {
    background: rgba(255,255,255,0.1); border: 1px solid transparent; color: #fff;
    padding: 10px 15px; border-radius: 20px; outline: none; font-family: 'Inter', sans-serif;
}
.playlist-search-box input:focus { border-color: var(--neon-cyan); background: rgba(0,0,0,0.5); }

/* Custom select wrapper */
.custom-select-wrap { position: relative; display: flex; align-items: center; }
.custom-select-wrap select {
    -webkit-appearance: none; appearance: none;
    background: rgba(20,20,30,0.95); border: 1px solid rgba(255,255,255,0.15); color: #fff;
    padding: 10px 32px 10px 15px; border-radius: 20px; outline: none;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; cursor: pointer;
    transition: border 0.2s;
}
.custom-select-wrap select:focus { border-color: var(--neon-cyan); }
.custom-select-wrap select option { background: #14141e; color: #fff; }
.custom-select-arrow {
    position: absolute; right: 12px; pointer-events: none;
    color: #a7a7a7; font-size: 0.8rem;
}

/* View toggle buttons */
.playlist-view-toggle { display: flex; gap: 4px; align-items: center; flex-shrink: 0; }
.view-btn {
    background: rgba(255,255,255,0.06); border: 1px solid transparent; color: #a7a7a7;
    width: 34px; height: 34px; border-radius: 8px; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.view-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.view-btn.active { background: rgba(6,182,212,0.15); border-color: var(--neon-cyan); color: var(--neon-cyan); }

.spotify-list-header {
    display: grid; grid-template-columns: 40px 1fr 1fr 100px;
    padding: 10px 30px; border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #a7a7a7; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 10px;
}
.spotify-items {
    padding: 0 20px 30px;
}

/* ITEM ROW */
.sp-row {
    display: grid; grid-template-columns: 40px 1fr 1fr 100px;
    align-items: center; padding: 10px; margin-bottom: 2px;
    border-radius: 5px; cursor: pointer; transition: 0.2s;
    color: #a7a7a7;
}
.sp-row:hover { background: rgba(255,255,255,0.1); color: #fff; }
.sp-row.active { color: var(--neon-cyan); background: rgba(6, 182, 212, 0.05); }
.sp-row.active .sp-title { color: var(--neon-cyan); }

.sp-num { text-align: center; font-size: 0.95rem; font-variant-numeric: tabular-nums; }
.sp-title-col { display: flex; align-items: center; gap: 12px; overflow: hidden; }
.sp-cover { width: 45px; height: 45px; border-radius: 4px; object-fit: cover; }
.sp-title-box { display: flex; flex-direction: column; overflow: hidden; }
.sp-title { color: #fff; font-size: 1rem; font-weight: 500; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.sp-artist-sub { font-size: 0.85rem; margin-top: 3px; }
.sp-album { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.sp-actions { display: flex; align-items: center; gap: 15px; justify-content: flex-end; }

.add-queue-btn { background: transparent; border: none; color: #a7a7a7; cursor: pointer; font-size: 1.1rem; }
.add-queue-btn:hover { color: #fff; transform: scale(1.1); }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* =========================================
   SPOTIFY MOBILE OPTIMIZATION (FLEXBOX FIX)
   ========================================= */
@media (max-width: 768px) {
    /* HEADER LEBIH KECIL & RAPI */
    .spotify-header { padding: 20px 15px 10px !important; flex-direction: row !important; align-items: center !important; text-align: left !important; gap: 15px !important; }
    .spotify-header-img { width: 80px !important; height: 80px !important; flex-shrink: 0 !important; border-radius: 6px !important; }
    .spotify-title { font-size: 1.5rem !important; }
    .spotify-type { font-size: 0.7rem !important; margin-bottom: 2px !important; }
    .spotify-desc { display: none !important; }

    /* CONTROLS (TABS BISA DI-SLIDE, SEARCH DIBIKIN SEJAJAR) */
    .spotify-controls-row { padding: 0 10px !important; margin-bottom: 10px !important; flex-direction: column !important; align-items: stretch !important; gap: 10px !important; }
    .playlist-tabs-scroll { flex-wrap: nowrap !important; overflow-x: auto !important; justify-content: flex-start !important; gap: 8px !important; padding-bottom: 5px !important; scrollbar-width: none; }
    .playlist-tabs-scroll::-webkit-scrollbar { display: none; }
    .plist-tab { flex: 0 0 auto !important; padding: 8px 16px !important; font-size: 0.8rem !important; border-radius: 20px !important; }
    
    .playlist-search-box { flex-direction: row !important; width: 100% !important; gap: 8px !important; margin-top: 5px !important;}
    .playlist-search-box input { flex: 2 !important; padding: 10px 15px !important; font-size: 0.85rem !important; border-radius: 20px !important;}
    .playlist-search-box select { flex: 1 !important; padding: 10px !important; font-size: 0.85rem !important; border-radius: 20px !important;}

    /* SEMBUNYIKAN HEADER KOLOM */
    .spotify-list-header { display: none !important; }
    .hide-mobile { display: none !important; }

    /* FIX: BARIS LAGU DI HP (ANTI NUMPUK) */
    .sp-row { display: flex !important; align-items: center !important; gap: 12px !important; padding: 10px !important; }
    .sp-num { display: none !important; } /* Sembunyikan nomor urut biar lega */
    
    .sp-title-col { flex: 1 !important; min-width: 0 !important; display: flex !important; align-items: center !important; gap: 12px !important; }
    .sp-cover { width: 45px !important; height: 45px !important; flex-shrink: 0 !important; border-radius: 4px !important; }
    
    /* Box teks dikunci biar otomatis titik-titik (...) kalau kepanjangan */
    .sp-title-box { flex: 1 !important; min-width: 0 !important; display: flex !important; flex-direction: column !important; justify-content: center !important; }
    .sp-title { font-size: 0.95rem !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; width: 100% !important; display: block !important;}
    .sp-artist-sub { font-size: 0.8rem !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; width: 100% !important; margin-top: 3px !important; display: block !important;}
    
    .sp-actions { flex-shrink: 0 !important; display: flex !important; align-items: center !important; gap: 12px !important; }
    .sp-duration { font-size: 0.8rem !important; }
}
/* =========================================
   PLAYLIST ROW UPDATE (TOP RANK & PLAY BTN)
   ========================================= */
/* Lebarkan kolom nomor biar "TOP 1" muat, dan kolom action buat tombol play */
.spotify-list-header { grid-template-columns: 65px 1fr 1fr 140px !important; }
.sp-row { grid-template-columns: 65px 1fr 1fr 140px !important; }

.list-play-btn {
    background: transparent; border: none; color: #a7a7a7;
    cursor: pointer; font-size: 1.1rem; display: flex;
    align-items: center; justify-content: center;
    transition: 0.2s; padding: 0; margin-right: 5px;
}
.list-play-btn:hover { color: var(--neon-cyan); transform: scale(1.1); }

@media (max-width: 768px) {
    /* Tampilkan kembali kolom nomor di HP dan atur jaraknya */
    .sp-row { gap: 8px !important; padding: 10px 5px !important; }
    .sp-num { display: block !important; width: 45px !important; text-align: center !important; font-size: 0.75rem !important; flex-shrink: 0 !important; }
    .sp-actions { gap: 10px !important; }
    .spotify-items { padding-bottom: max(80px, calc(80px + env(safe-area-inset-bottom))) !important; }
    .custom-select-wrap select { padding: 10px 28px 10px 12px !important; font-size: 0.8rem !important; }
    .playlist-view-toggle { gap: 3px !important; }
    .view-btn { width: 30px !important; height: 30px !important; font-size: 0.9rem !important; }
    /* Cover view mobile: 2 kolom */
    .spotify-items.view-cover { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; padding: 10px !important; }
}

/* =========================================
   VIEW MODES: LIST & COVER
   ========================================= */

/* LIST VIEW — compact rows, no album column */
.spotify-items.view-list .sp-row {
    grid-template-columns: 36px 1fr 90px !important;
    padding: 8px 10px !important;
}
.spotify-items.view-list .sp-row .sp-album { display: none !important; }
.spotify-items.view-list .sp-cover { width: 36px !important; height: 36px !important; border-radius: 3px !important; }
.spotify-items.view-list .sp-title { font-size: 0.9rem !important; }
.spotify-items.view-list .sp-artist-sub { font-size: 0.75rem !important; }
.spotify-items.view-list + .spotify-list-header,
.spotify-items.view-list ~ .spotify-list-header { display: none; }

/* COVER VIEW — Spotify Home style */
.spotify-items.view-cover {
    display: flex !important;
    flex-direction: column;
    gap: 36px;
    padding: 24px 30px 40px !important;
}

/* Section (per artist group) */
.sp-home-section { display: flex; flex-direction: column; gap: 14px; }
.sp-home-header {
    display: flex; align-items: baseline; justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 10px;
}
.sp-home-title {
    font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700;
    color: #fff; letter-spacing: 1px;
}
.sp-home-count { font-size: 0.75rem; color: #a7a7a7; letter-spacing: 1px; text-transform: uppercase; }

/* Card grid */
.sp-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

/* Individual card */
.sp-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    border: 1px solid transparent;
    position: relative;
}
.sp-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.sp-card.active { border-color: var(--neon-cyan); background: rgba(6,182,212,0.08); }

/* Cover art area */
.sp-card-art {
    position: relative; width: 100%; aspect-ratio: 1;
    border-radius: 6px; overflow: hidden; margin-bottom: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.sp-card-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.sp-card-placeholder {
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #555;
}

/* Play button overlay */
.sp-card-playbtn {
    position: absolute; bottom: 8px; right: 8px;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--neon-cyan); color: #000;
    border: none; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(6,182,212,0.5);
}
.sp-card:hover .sp-card-playbtn,
.sp-card.active .sp-card-playbtn { opacity: 1; transform: translateY(0); }

/* Fav indicator */
.sp-card-fav {
    position: absolute; top: 8px; left: 8px;
    color: var(--neon-cyan); font-size: 0.85rem;
    text-shadow: 0 0 8px var(--neon-cyan);
}

/* Card text */
.sp-card-info { padding: 0 2px; }
.sp-card-name {
    color: #fff; font-size: 0.9rem; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 4px;
}
.sp-card.active .sp-card-name { color: var(--neon-cyan); }
.sp-card-sub {
    color: #a7a7a7; font-size: 0.78rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    display: flex; align-items: center; gap: 6px;
}
.sp-card-plays {
    color: var(--neon-cyan); font-size: 0.7rem;
    background: rgba(6,182,212,0.1); padding: 1px 5px; border-radius: 4px;
    white-space: nowrap;
}

/* Mobile adjustments for cover cards */
@media (max-width: 768px) {
    .spotify-items.view-cover { padding: 16px 12px 40px !important; gap: 28px; }
    .sp-home-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .sp-card { padding: 8px; }
    .sp-card-playbtn { width: 34px !important; height: 34px !important; font-size: 0.85rem !important; opacity: 1 !important; transform: none !important; }
    .sp-home-title { font-size: 0.9rem !important; }
}

/* ========================
   SP-APP RESPONSIVE LAYOUT
   ======================== */

/* Medium: hide right now-playing panel */
@media (max-width: 1060px) {
    .sp-app { grid-template-columns: 220px 1fr; }
    .sp-np-panel { display: none; }
}

/* Small: hide sidebar, full center */
@media (max-width: 700px) {
    .sp-app {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        height: 100dvh; width: 100vw;
        border-radius: 0;
    }
    .sp-lib {
        flex-direction: column;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .sp-lib-head { display: none; }
    .sp-lib-search {
        flex-direction: row; padding: 8px 10px;
        border-bottom: none;
    }
    .sp-lib-search input { min-width: 0; }
    .sp-lib-nav {
        flex-direction: row; overflow-x: auto; overflow-y: hidden;
        padding: 4px 8px 8px; gap: 6px; flex: 0;
        scrollbar-width: none;
    }
    .sp-lib-nav::-webkit-scrollbar { display: none; }
    .sp-lib-nav .plist-tab {
        flex: 0 0 auto; padding: 7px 14px;
        border-radius: 20px; font-size: 0.8rem;
    }
    .sp-lib-nav .plist-tab::before { display: none; }
    .sp-center { border-radius: 0; }
    .spotify-header { padding: 16px 14px 12px !important; }
    .spotify-header-img { width: 70px !important; height: 70px !important; }
    .spotify-title { font-size: 1.4rem !important; }
    .spotify-desc { display: none !important; }
    .spotify-list-header { display: none !important; }
    .hide-mobile { display: none !important; }
    .sp-row { display: flex !important; gap: 10px !important; padding: 10px 8px !important; }
    .sp-num { display: none !important; }
    .sp-title-col { flex: 1 !important; min-width: 0 !important; }
    .sp-title-box { flex: 1 !important; min-width: 0 !important; }
    .sp-title { font-size: 0.9rem !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
    .sp-artist-sub { font-size: 0.78rem !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
    .sp-actions { flex-shrink: 0 !important; gap: 10px !important; }
    .sp-duration { font-size: 0.78rem !important; }
    .spotify-items { padding: 0 8px 30px !important; }
}

/* ═══════════════════════════════════════════════
   NEW HOME LAYOUT — TURNTABLE + LANDING
   ═══════════════════════════════════════════════ */

/* === TURNTABLE SECTION (left col) === */
.turntable-section { position: relative; display: flex; flex-direction: column; height: 100dvh; overflow: hidden; }

/* === VINYL STAGE === */
.vinyl-stage { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; min-height: 0; }
.turntable-img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; pointer-events: none; user-select: none; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8)); }

/* === VISUALIZER OVERLAY on vinyl center === */
.turntable-section .visualizer-container { position: absolute !important; left: 43% !important; top: 42% !important; transform: translate(-50%, -50%) !important; width: 240px !important; height: 240px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.turntable-section .cover-circle { width: 160px !important; height: 160px !important; border-radius: 50% !important; overflow: hidden !important; position: relative !important; z-index: 10 !important; }
.turntable-section #visualizerCanvas { position: absolute !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; width: 600px !important; height: 600px !important; z-index: 1 !important; display: block !important; }

/* === SPINNING ALBUM COVER === */
@keyframes record-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cover-circle.spinning #coverImage { animation: record-spin 4s linear infinite !important; transform-origin: center center; }

/* === PLAYER PANEL === */
.player-panel { flex-shrink: 0; background: linear-gradient(to top, rgba(5,5,8,0.97) 0%, rgba(10,10,20,0.92) 100%); border-top: 1px solid rgba(255,255,255,0.07); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 0 20px 28px; position: relative; z-index: 20; box-shadow: 0 -10px 40px rgba(0,0,0,0.5); }
.player-panel-inner { max-width: 460px; margin: 0 auto; width: 100%; }
.player-panel .system-info { position: static; text-align: right; padding-top: 10px; margin-bottom: 4px; display: flex; flex-direction: column; align-items: flex-end; }
.player-panel .track-info-central { text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-bottom: 8px; }

/* === LANDING SECTION (right welcome text) === */
.landing-section { display: flex; flex-direction: column; justify-content: center; padding: 80px 60px 80px 50px; position: relative; overflow: hidden; }
.landing-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(239,68,68,0.03) 0%, transparent 60%); pointer-events: none; }

/* === LYRICS OVERLAY inside turntable section === */
.turntable-section .center-section { position: absolute !important; inset: 0 !important; z-index: 40 !important; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(5,5,8,0.88); backdrop-filter: blur(12px); opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.main-layout.lyrics-mode .turntable-section .center-section { opacity: 1; pointer-events: auto; }
.turntable-section .lyrics-container { width: 100%; height: 75%; max-height: 500px; }

/* === MOBILE (max 768px) === */
@media (max-width: 768px) {
    .main-layout { grid-template-columns: 1fr !important; grid-template-rows: auto 1fr !important; height: 100dvh !important; overflow: hidden !important; }
    .turntable-section { grid-row: 1 / 2; height: auto !important; flex: 0 0 auto !important; }
    .landing-section { display: none !important; }
    .vinyl-stage { height: 44vw; max-height: 300px; flex: 0 0 auto; }
    .turntable-section .visualizer-container { width: 120px !important; height: 120px !important; left: 43% !important; top: 42% !important; }
    .turntable-section .cover-circle { width: 80px !important; height: 80px !important; }
    .turntable-section #visualizerCanvas { width: 360px !important; height: 360px !important; }
    .player-panel { padding: 0 12px 20px; }
    .player-panel .system-info { display: none !important; }
    .hud-nav { top: 18px; right: 18px; font-size: 0.65rem; gap: 5px; }
    .hud-footer { bottom: 0; left: 0; right: 0; display: flex; justify-content: center; font-size: 0.6rem; background: rgba(5,5,8,0.7); padding: 4px 10px; pointer-events: none; }
}

/* === TABLET (769–1200px) === */
@media (min-width: 769px) and (max-width: 1200px) {
    .main-layout { grid-template-columns: 58% 42%; }
    .landing-section { padding: 60px 30px 60px 30px; }
    .turntable-section .visualizer-container { width: 180px !important; height: 180px !important; }
    .turntable-section .cover-circle { width: 120px !important; height: 120px !important; }
}

/* ==========================================================================
   VOSIER V5 REDESIGN (SKETCH / HAND-DRAWN HERO)
   ========================================================================== */

:root {
    --accent-hero: #f7f2e1;
    --text-dim: rgba(255, 255, 255, 0.6);
    --grid-color: rgba(255, 255, 255, 0.05);
}

.hero-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

.hero-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15%;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    height: 32px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.header-logo span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
    color: #fff;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-nav a {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease);
}

.header-nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* ARTIST DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    min-width: 180px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    padding: 10px 0;
    margin-top: 0;
    padding-top: 15px; /* Creates a bridge for hover */
    border-radius: 4px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s var(--ease);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-content a {
    color: var(--text-dim);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding-left: 25px;
}

/* HERO LAYOUT */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 15%;
    gap: 50px;
    height: 100vh;
}

.hero-badge {
    position: relative;
    display: inline-block;
    padding: 8px 18px;
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 25px;
}

.hero-title {
    font-family: 'Shadows Into Light', cursive;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 30px;
    color: #fff;
}

.hero-desc {
    max-width: 480px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.hero-cta-btn {
    background: var(--accent-hero);
    color: #050508;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247,242,225,0.2);
    filter: brightness(1.1);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HERO RIGHT PLAYER WINDOW */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stylized-window {
    width: 100%;
    max-width: 450px;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    position: relative;
    animation: floatRedesign 6s ease-in-out infinite;
}

.window-header {
    background: rgba(255,255,255,0.03);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.window-dots {
    position: absolute;
    left: 15px;
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.window-title {
    font-size: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.window-content {
    padding: 20px;
    min-height: 250px;
}

.preview-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.preview-track:hover {
    background: rgba(255,255,255,0.05);
}

.preview-track.active {
    background: rgba(247,242,225,0.1);
}

.pt-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pt-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-dim);
}

.pt-text span {
    display: block;
    font-size: 0.85rem;
    color: #fff;
}

.pt-text small {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.window-footer {
    padding: 15px 20px 25px;
}

.mini-progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-bottom: 15px;
}

.window-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.win-ctrl {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.win-ctrl:hover { 
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.win-ctrl-play {
    width: 46px;
    height: 46px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.win-ctrl-play:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

#playlistModal #visualizerContainer { 
    display: block !important; 
    margin: 0 auto 20px; 
    width: 140px; 
    height: 140px; 
    position: relative; 
}
#playlistModal #visualizerCanvas { 
    width: 100% !important; 
    height: 100% !important; 
}
#playlistModal .cover-circle { 
    width: 90px !important; 
    height: 90px !important; 
    left: 50% !important; 
    top: 50% !important; 
    transform: translate(-50%, -50%) !important; 
}

/* MOBILE RESPONSIVE HERO */
@media (max-width: 992px) {
    .hero-layout { grid-template-columns: 1fr; padding-top: 120px; text-align: center; height: auto; }
    .hero-header { padding: 0 20px; }
    .hero-header span { display: none; }
    .hero-title { font-size: 3rem; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-cta-btn { margin: 0 auto; }
    .hero-stats { justify-content: center; font-size: 0.8rem; }
    .stat-value { font-size: 1.4rem; }
}

.stylized-window { 
    background: rgba(15, 15, 20, 0.7); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 12px; 
    width: 100%; 
    max-width: 420px; 
    overflow: hidden; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.5); 
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) rotateZ(-2deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
} 
.stylized-window:hover { 
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1.02); 
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
} 

.static-preview-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 12px 18px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    transition: all 0.3s; 
    cursor: pointer; 
    position: relative;
} 
.static-preview-item:hover { background: rgba(255,255,255,0.08); padding-left: 22px; } 
.static-preview-item img { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); } 
.spi-info { display: flex; flex-direction: column; flex: 1; } 
.spi-info span { font-size: 0.95rem; font-weight: 600; color: #fff; } 
.spi-info small { font-size: 0.7rem; color: var(--text-dim); } 

.spi-play-btn {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s;
    cursor: pointer;
}
.static-preview-item:hover .spi-play-btn {
    background: #fff;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}
.preview-placeholder { padding: 40px; text-align: center; color: var(--text-dim); }

.spotify-modal {
    position: fixed; inset: 0; 
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.spotify-modal::-webkit-scrollbar { display: none; }
.spotify-modal.hidden { opacity: 0; pointer-events: none; transform: scale(1.05); }

/* Hide Copyright when modal is open */
.spotify-modal:not(.hidden) ~ .hud-footer {
    display: none;
}

/* Cinematic Background */
.v-dashboard-bg {
    position: absolute;
    inset: -50px;
    background-size: cover;
    background-position: center;
    filter: blur(80px) brightness(0.35) saturate(1.2);
    z-index: 0;
    transition: background-image 1.2s ease-in-out;
    opacity: 0.8;
}

/* ═══════════════════════════════════════════  
   VOSIER ELITE DASHBOARD — CINEMATIC EDITION
   ═══════════════════════════════════════════ */

.v-dashboard {
    display: flex !important;
    flex-direction: row !important;
    height: 92vh;
    width: 96% !important;
    max-width: 1600px !important;
    background: rgba(10, 10, 15, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 50px 100px rgba(0,0,0,0.9), inset 0 0 1px 1px rgba(255,255,255,0.05);
    font-family: 'Inter', sans-serif;
    color: #fff;
    animation: modalReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalReveal {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Sidebar - Elegant & Minimalist */
.v-sidebar {
    width: 260px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    flex-shrink: 0;
}

.v-brand {
    padding: 0 32px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}
.v-brand:hover { transform: translateX(5px); }

.v-vf-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.05);
}
.v-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

.v-search-box {
    margin: 0 24px 32px;
    position: relative;
}
.v-search-box input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 15px 12px 40px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.4s var(--ease);
}
.v-search-box input:focus { 
    background: rgba(255,255,255,0.1); 
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.v-icon-search { 
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%); 
    font-size: 0.9rem; opacity: 0.4; 
}

.v-nav { padding: 0 16px; display: flex; flex-direction: column; gap: 6px; }
.v-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: none;
    background: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s var(--ease);
    text-align: left;
}
.v-nav-item .v-icon { font-size: 1.1rem; opacity: 0.6; }
.v-nav-item:hover { color: #fff; background: rgba(255,255,255,0.05); }
.v-nav-item.active { 
    background: rgba(255,255,255,0.1); 
    color: #fff; 
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.v-playlists-section {
    margin-top: 40px;
    padding: 0 32px;
    flex: 1;
    overflow-y: auto;
}
.v-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.v-add-btn { 
    background: none; border: none; color: rgba(255,255,255,0.4); 
    cursor: pointer; font-size: 1.4rem; line-height: 1; 
    transition: all 0.3s;
}
.v-add-btn:hover { color: #fff; transform: scale(1.2); }

.v-playlist-list { display: flex; flex-direction: column; gap: 14px; }
.v-playlist-item { 
    font-size: 0.85rem; 
    color: rgba(255,255,255,0.5); 
    cursor: pointer; 
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.v-playlist-item:hover { color: #fff; padding-left: 2px; }

.v-sidebar-footer { padding: 24px 32px; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.05); }
.v-about-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    display: flex;
    align-items: center; gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.v-about-btn:hover { color: #fff; }

/* Main Content Wrapper */
.v-main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.v-dashboard-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.1);
}

.v-tabs { display: flex; gap: 32px; position: relative; }
.v-tab {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    padding: 12px 0;
    position: relative;
    transition: all 0.4s var(--ease);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}
.v-tab:hover, .v-tab.active { color: #fff; }
.v-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60%;
    height: 2px;
    background: #fff;
    box-shadow: 0 0 10px #fff;
    border-radius: 2px;
}

.v-header-actions { display: flex; align-items: center; gap: 24px; flex: 1; justify-content: flex-end; }
.v-search-bar {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 240px;
    transition: all 0.4s var(--ease);
}
.v-search-bar:focus-within { 
    width: 280px;
    border-color: rgba(255,255,255,0.2); 
    background: rgba(255,255,255,0.1); 
}
.v-search-bar input {
    background: none;
    border: none;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    width: 100%;
}
.v-close-btn { 
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.06); 
    border-color: rgba(255,255,255,0.1); 
    color: rgba(255,255,255,0.6); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.v-close-btn:hover { background: #fff; color: #000; box-shadow: 0 0 20px rgba(255,255,255,0.4); transform: rotate(90deg); }

.v-content {
    flex: 1;
    padding: 32px 48px;
    overflow-y: auto;
    position: relative;
}

/* Empty State */
.v-empty-state {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0.3;
}
.v-disc-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    width: 120px;
    height: 120px;
    border: 1.5px dashed #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 15s linear infinite;
}
.v-empty-state h2 { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 300; letter-spacing: 4px; }

/* Table View - Elegant */
.v-list-header {
    display: grid;
    grid-template-columns: 40px 50px 1.8fr 1.2fr 80px 100px 40px;
    gap: 12px;
    padding: 0 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.v-items-container { padding-top: 16px; display: flex; flex-direction: column; gap: 4px; }

/* 1. KEMBALIKAN KE GRID AGAR SEJAJAR DENGAN HEADER */
.v-track-row {
    display: grid;
    /* Ini kunci biar sejajar: ukurannya harus sama persis dengan .v-list-header */
    grid-template-columns: 40px 50px 1.8fr 1.2fr 80px 100px 40px; 
    gap: 12px;
    padding: 10px 20px;
    align-items: center;
    border-radius: 12px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    border: 1px solid transparent;
}

.v-track-row:hover { 
    background: rgba(255,255,255,0.05); 
    transform: scale(1.005);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.v-track-row.playing { 
    background: rgba(255, 255, 255, 0.05); 
    color: #fff;
    box-shadow: none;
    border: 1px solid transparent;
}

/* 2. RAPIHKAN TOMBOL HATI & PLUS (ACTIONS) */
.col-act {
    display: flex;
    justify-content: flex-end; /* Dorong tombol mentok ke kanan kolomnya */
}

.v-row-actions { 
    display: flex; 
    align-items: center; 
    gap: 15px; /* Jarak pas antar tombol hati dan plus */
    opacity: 0; 
    transition: opacity 0.3s; 
}

.v-track-row:hover .v-row-actions { 
    opacity: 1; 
}

/* 3. POSISI MINI VISUALIZER */
.col-vz { 
    display: flex; 
    align-items: center; 
    justify-content: center; /* Posisikan animasi pas di tengah kolom paling kanan */
}
.v-track-row.playing .col-t { color: #fff; font-weight: 700; }
.v-track-row .col-n { 
    color: rgba(255,255,255,0.2); 
    font-family: 'JetBrains Mono', monospace; 
    font-size: 0.75rem; 
}
.v-track-row .col-t { font-weight: 500; color: rgba(255,255,255,0.9); }
.v-track-row .col-a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.v-track-row .col-d { color: rgba(255,255,255,0.3); font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; text-align: right; }

.v-row-actions { display: flex; align-items: center; gap: 16px; opacity: 0; transition: opacity 0.3s; }
.v-track-row:hover .v-row-actions { opacity: 1; }
.v-act-btn { 
    background: none; border: none; color: rgba(255,255,255,0.3); 
    cursor: pointer; font-size: 1.1rem; padding: 4px; 
    transition: all 0.3s; 
}
.v-act-btn:hover { color: #fff; transform: scale(1.15); }
.v-act-btn.fav.active { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

/* Mini visualizer column */
.col-vz { display: flex; align-items: center; justify-content: center; }
.col-cv { display: flex; align-items: center; justify-content: center; }
.v-row-cover { width: 36px; height: 36px; border-radius: 6px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

/* Grid View Mode */
.v-items-container.v-mode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 24px;
    padding-top: 20px;
}

.v-grid-item {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    cursor: pointer;
}

.v-grid-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.v-grid-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.v-grid-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.v-grid-item:hover .v-grid-cover img { transform: scale(1.1); }

.v-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-grid-item:hover .v-grid-overlay { opacity: 1; }

.v-grid-play {
    width: 48px; height: 48px;
    background: #fff; color: #000;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; padding-left: 3px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transform: translateY(15px);
    transition: all 0.3s;
}

.v-grid-item:hover .v-grid-play { transform: translateY(0); }

.v-grid-info { margin-bottom: 14px; }
.v-grid-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-grid-artist { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.v-grid-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.v-grid-item:hover .v-grid-actions { opacity: 1; }

.v-grid-viz {
    position: absolute;
    bottom: 12px; right: 12px;
    display: flex; gap: 3px; align-items: flex-end;
    height: 18px;
    z-index: 10;
}

/* Playing Animation Shared */
/* Playing Indicator */
.v-playing-icon { display: flex; width: 14px; height: 14px; align-items: flex-end; gap: 2px; }
.v-bar { width: 3px; background: #fff; height: 2px; animation: bounce-bar 0.6s infinite ease-in-out alternate; }
.v-bar:nth-child(2) { animation-delay: 0.2s; }
.v-bar:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce-bar { from { height: 2px; } to { height: 14px; } }

/* Grid View (Artists) - Premium Look */
.v-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 32px;
}
.v-grid-card {
    background: rgba(255,255,255,0.03);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}
.v-grid-card:hover { 
    background: rgba(255,255,255,0.08); 
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}
.v-grid-card img { 
    width: 100%; aspect-ratio: 1; border-radius: 50%; 
    object-fit: cover; margin-bottom: 20px; 
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.v-grid-card h3 { 
    font-size: 1rem; margin-bottom: 6px; color: #fff; 
    font-family: 'Orbitron', sans-serif; 
}
.v-grid-card p { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; }

/* Professional Right Sidebar Redesign */
.v-np-panel {
    width: 380px;
    flex-shrink: 0;
    background: rgba(5, 5, 8, 0.45);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    backdrop-filter: blur(40px);
    transition: width 0.3s ease;
}

.v-dashboard-close {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.v-dashboard-close:hover {
    background: rgba(255, 50, 50, 0.2);
    border-color: rgba(255, 50, 50, 0.4);
    color: #fff;
    transform: rotate(90deg);
}

.v-lyrics-header-sticky {
    padding: 30px 40px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.v-np-art img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 40px 70px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.08);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.v-np-art:hover img { 
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 50px 80px rgba(0,0,0,0.9);
}

.v-lyrics-header-sticky h3 { 
    font-size: 0.75rem; letter-spacing: 6px; 
    color: rgba(255,255,255,0.2); text-transform: uppercase; 
    font-weight: 900;
}

.v-lyrics-body {
    flex: 1;
    overflow-y: auto;
    text-align: left;
    padding: 60px 40px 150px; 
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    scroll-behavior: smooth;
    position: relative;
    scrollbar-width: none;
}
.v-lyrics-body::-webkit-scrollbar { display: none; }

.lyric-line {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.25;
    margin: 8px 0; 
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem; 
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
}

.lyric-line.active {
    opacity: 1;
    color: #06b6d4; 
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
    transform: scale(1.05);
}

.lyric-line.past {
    opacity: 0.1;
}

/* Player Bar - Glass UI */
.v-player-bar {
    height: 100px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 100;
    flex-shrink: 0;
}

.v-np-info { display: flex; align-items: center; gap: 15px; width: 30%; }
.v-np-cover { 
    width: 44px; height: 44px; 
    border-radius: 8px; overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
    border: 1px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.v-np-cover img { width: 100%; height: 100%; object-fit: cover; }
.v-np-meta { overflow: hidden; display: flex; flex-direction: column; gap: 2px; }
.v-np-title { font-size: 0.95rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-np-artist { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.v-np-controls { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 40%; }
.v-ctrl-btns { display: flex; align-items: center; gap: 24px; }
.v-ctrl-btn { background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer; padding: 6px; transition: all 0.3s; }
.v-ctrl-btn:hover { color: #fff; }
.v-ctrl-btn.active { color: #06b6d4; filter: drop-shadow(0 0 5px rgba(6,182,212,0.6)); }
.v-ctrl-play {
    width: 48px; height: 48px;
    background: #fff; color: #000;
    border-radius: 50%; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; padding-left: 3px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}
.v-ctrl-play:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(255,255,255,0.5); }

.v-progress-wrap { display: flex; align-items: center; gap: 14px; width: 100%; max-width: 500px; }
.v-time { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-family: 'JetBrains Mono', monospace; width: 40px; }
.v-progress-bg { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; cursor: pointer; position: relative; transition: height 0.2s; }
.v-progress-bg:hover { height: 6px; }
.v-progress-bg:hover .v-progress-fill::after { opacity: 1; }
.v-progress-fill { height: 100%; background: #fff; border-radius: 2px; width: 0; position: relative; }
.v-progress-fill::after {
    content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
    width: 12px; height: 12px; background: #fff; border-radius: 50%; box-shadow: 0 0 10px rgba(0,0,0,0.5);
    opacity: 0; transition: opacity 0.2s;
}

.v-np-utils { display: flex; align-items: center; justify-content: flex-end; gap: 20px; width: 30%; }
.v-util-btn { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 1.1rem; transition: all 0.3s; }
.v-util-btn:hover { color: #fff; }
.v-vol-section { display: flex; align-items: center; gap: 10px; }
.v-vol-slider { 
    appearance: none; -webkit-appearance: none;
    width: 100px; height: 4px; 
    background: rgba(255,255,255,0.12); 
    border-radius: 2px; outline: none; 
    transition: background 0.1s;
}
.v-vol-slider::-webkit-slider-thumb { 
    -webkit-appearance: none; 
    width: 12px; height: 12px; 
    background: #fff; border-radius: 50%; 
    cursor: pointer; 
    box-shadow: 0 0 10px rgba(0,0,0,0.5); 
}

/* Custom Additions */
.v-close-btn.top-exit {
    background: rgba(255, 255, 255, 0.05);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    color: rgba(255,255,255,0.5);
}

.v-close-btn.top-exit:hover {
    background: rgba(255, 50, 50, 0.2);
    border-color: rgba(255, 50, 50, 0.5);
    color: #fff;
    transform: rotate(90deg);
}

/* View Mode Toggles Styling */
.v-view-toggles {
    display: flex;
    gap: 8px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.v-view-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.3);
    width: 34px; height: 34px;
    border-radius: 8px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.v-view-btn.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.v-view-btn:hover:not(.active) {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
}

.v-playlist-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-right: 15px !important;
}

.v-pl-delete {
    background: none;
    border: none;
    color: rgba(255,255,255,0.2);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
    opacity: 0;
    padding: 4px;
}

.v-playlist-item:hover .v-pl-delete {
    opacity: 1;
}

.v-pl-delete:hover {
    color: #ff4d4d;
    transform: scale(1.2);
}

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.v-events-list { display: flex; flex-direction: column; gap: 20px; }
.v-event-card { 
    background: rgba(255,255,255,0.03); padding: 24px; border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s;
}
.v-event-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }
.v-event-info h3 { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; color: #fff; margin-bottom: 8px; letter-spacing: 2px; }
.v-event-info p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.v-event-status { color: #fff; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; letter-spacing: 3px; border: 1px solid rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 20px; }
.v-prompt-overlay { 
    position: fixed; inset: 0; 
    background: radial-gradient(circle at center, rgba(5,5,10,0.7) 0%, rgba(0,0,0,0.95) 100%); 
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 100000; 
    display: flex; align-items: center; justify-content: center; 
    transition: opacity 0.4s var(--ease);
}
.v-prompt-overlay.hidden { 
    opacity: 0; pointer-events: none; 
}
.v-prompt-box { 
    background: rgba(10, 10, 15, 0.6); 
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    padding: 40px; 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.08); 
    width: 90%; max-width: 420px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,255,255,0.02);
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}
.v-prompt-overlay.hidden .v-prompt-box { 
    transform: scale(0.95) translateY(20px); 
}
.v-prompt-icon {
    color: var(--neon-primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.5));
}
.v-prompt-box h3 { 
    margin-bottom: 15px; 
    font-family: 'Orbitron', sans-serif; 
    letter-spacing: 4px; 
    color: #fff; 
    font-size: 1.1rem; 
}

.v-prompt-box p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.v-prompt-box input { 
    width: 100%; 
    background: rgba(0,0,0,0.4); 
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.1); 
    padding: 15px 0; 
    color: #fff; 
    margin-bottom: 30px; 
    font-size: 1rem; 
    outline: none; 
    text-align: center;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.v-prompt-box input:focus { 
    border-bottom-color: var(--neon-cyan); 
    background: rgba(6, 182, 212, 0.05); 
}
.v-prompt-actions { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
}

.v-prompt-btn { 
    padding: 12px 30px; 
    border-radius: 30px; 
    border: 1px solid transparent; 
    cursor: pointer; 
    font-size: 0.8rem; 
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px; 
    transition: all 0.3s; 
}

.v-prompt-btn.cancel { 
    background: transparent; 
    color: rgba(255,255,255,0.5); 
    border-color: rgba(255,255,255,0.2);
}

.v-prompt-btn.cancel:hover {
    color: #fff;
    border-color: #fff;
}

.v-prompt-btn.confirm { 
    background: #fff; 
    color: #000; 
    box-shadow: 0 5px 20px rgba(255,255,255,0.2); 
}
.v-prompt-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
}

.danger-mode .v-prompt-btn.confirm.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--neon-primary);
    border-color: var(--neon-primary);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.danger-mode .v-prompt-btn.confirm.danger:hover {
    background: var(--neon-primary);
    color: #fff;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
}

.v-selector-list {
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden; 
    text-align: left;
    margin-bottom: 20px;
    padding-right: 8px; 
}

.v-selector-list::-webkit-scrollbar {
    width: 4px; 
}

.v-selector-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.v-selector-list::-webkit-scrollbar-thumb {
    background: rgba(6, 182, 212, 0.3); 
    border-radius: 10px;
    transition: all 0.3s;
}

.v-selector-list::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan); 
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

.v-selector-item {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05); 
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s var(--ease);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.v-selector-item:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--neon-cyan);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.v-selector-item .pl-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 85%;
}

.v-selector-item .pl-status {
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
}

.hidden { display: none !important; }

/* ═══════════════════════════════════════════  
   MOBILE OPTIMIZATIONS — VOSIER PREMIUM
   ═══════════════════════════════════════════ */

/* Hide modal scrollbars for all */
.spotify-modal::-webkit-scrollbar { display: none !important; }
.spotify-modal { scrollbar-width: none !important; }

/* 1. TABLET & SMALL DESKTOP (850px - 1100px) */
@media (max-width: 1100px) {
    .v-sidebar { width: 80px; padding: 24px 0; }
    .v-brand-text, .v-section-head span, .v-sidebar-footer .v-label, .v-nav-item .v-label { display: none; }
    .v-brand { padding: 0 0 30px; justify-content: center; }
    .v-nav-item { justify-content: center; padding: 15px; }
    .v-nav-item .v-icon { margin: 0; font-size: 1.4rem; }
    .v-search-box { margin: 0 10px 24px; }
    .v-search-box input { padding: 12px; text-align: center; }
    .v-icon-search { display: none; }
}

/* 2. MOBILE LANDSCAPE & SMALL TABLETS (600px - 850px) */
@media (max-width: 850px) {
    .v-np-panel:not(.mobile-active) { display: none !important; }
    .v-np-panel.mobile-active {
        display: flex !important;
        position: absolute; inset: 0;
        width: 100% !important; height: 100% !important;
        z-index: 1000; background: rgba(5,5,8,0.95);
        backdrop-filter: blur(50px);
    }
}

/* 3. MOBILE SMARTPHONES (< 600px) */
@media (max-width: 600px) {
    .v-dashboard { height: 100vh; width: 100% !important; border-radius: 0; border: none; }
    .v-sidebar { display: none !important; }
    
    .v-bottom-nav { 
        display: flex !important; 
        position: fixed; bottom: 85px; left: 0; right: 0;
        height: 60px; background: rgba(10,10,15,0.9);
        backdrop-filter: blur(25px); border-top: 1px solid rgba(255,255,255,0.05);
        z-index: 999; justify-content: space-around; align-items: center;
        padding: 0 10px;
    }
    .v-bottom-item {
        background: none; border: none; color: rgba(255,255,255,0.4);
        display: flex; flex-direction: column; align-items: center; gap: 4px;
        cursor: pointer; flex: 1; transition: all 0.3s;
    }
    .v-bottom-item .v-icon { font-size: 1.2rem; }
    .v-bottom-item .v-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; }
    .v-bottom-item.active { color: #06b6d4; }

    .v-dashboard-header { height: 60px; padding: 0 15px; }
    .v-tabs { gap: 15px; overflow-x: auto; padding-bottom: 2px; -webkit-overflow-scrolling: touch; flex: 1; }
    .v-tabs::-webkit-scrollbar { display: none; }
    .v-tab { font-size: 0.65rem; letter-spacing: 1px; white-space: nowrap; padding: 10px 0; }
    .v-tab.active::after { width: 100%; }
    .v-view-toggles, .v-search-bar { display: none !important; }

    .v-player-bar { 
        position: fixed; bottom: 0; left: 0; right: 0;
        height: 85px; padding: 0 15px; 
        display: flex; justify-content: space-between; align-items: center;
        z-index: 1000;
        background: rgba(15,15,20,0.95);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .v-np-info { width: 55%; overflow: hidden; }
    .v-np-meta { gap: 0; }
    .v-np-title { font-size: 0.85rem; }
    .v-np-artist { font-size: 0.7rem; }
    .v-np-controls { width: auto; flex: none; gap: 0; }
    .v-ctrl-btns { gap: 12px; }
    .v-ctrl-btn:not(#dbPlayBtn):not(#dbNextBtn):not(#dbPrevBtn) { display: none; }
    .v-ctrl-play { width: 40px; height: 40px; font-size: 1.1rem; }
    .v-progress-wrap { position: absolute; top: -2px; left: 0; right: 0; max-width: none; gap: 0; }
    .v-progress-bg { height: 2px; border-radius: 0; }
    .v-progress-bg:hover { height: 3px; }
    .v-time { display: none; }
    
    .v-np-utils { width: auto; gap: 5px; }
    .v-vol-section { display: none !important; }
    .v-mobile-lyrics-btn { display: flex !important; font-size: 1.2rem; }

    .v-content { padding: 15px 15px 160px; }
    
    /* Desktop list header fix override */
    #vViewList .v-list-header { 
        grid-template-columns: 35px 45px 1fr 50px 35px !important; 
        padding: 0 10px 10px; font-size: 0.6rem; 
    }
    #vViewList .v-list-header .col-a, #vViewList .v-list-header .col-act { display: none !important; }
    
    .v-track-row { 
        grid-template-columns: 35px 45px 1fr 50px 35px !important; 
        padding: 10px; gap: 8px; border-radius: 8px; font-size: 0.85rem;
    }
    .v-track-row .col-a, .v-track-row .col-act { display: none !important; }
    .v-track-row .col-t { display: flex; flex-direction: column; min-width: 0; }
    .v-track-row .col-t::after {
        content: attr(data-artist); font-size: 0.7rem; color: rgba(255,255,255,0.4);
        margin-top: 1px; font-weight: 400; overflow: hidden; text-overflow: ellipsis;
    }
    .v-track-row .col-d { font-size: 0.7rem; }
    .v-num { font-size: 0.7rem; }

    /* Mobile Lyrics Overlay */
    .v-np-panel.mobile-active {
        display: flex !important;
        position: fixed; inset: 0;
        width: 100% !important; height: 100% !important;
        z-index: 2000; background: #050508;
    }
    .v-lyrics-header-sticky { padding: 20px; }
    .v-lyrics-header-sticky h3 { font-size: 0.6rem; letter-spacing: 4px; }
    .v-lyrics-back { 
        display: block !important; background: none; border: none; 
        color: #06b6d4; font-family: 'Orbitron', sans-serif; font-size: 0.7rem;
        letter-spacing: 1px; cursor: pointer;
    }
    .v-lyrics-header-sticky #playlistClose { display: none !important; } /* Hide dashboard exit X on mobile lyrics */
}

/* Initially hide mobile elements */
.v-bottom-nav, .v-mobile-lyrics-btn, .v-lyrics-back { display: none; }

/* ═══════════════════════════════════════════
   NOVEL SYSTEM — LIBRARY + READER + COMMENTS
   ═══════════════════════════════════════════ */

/* --- Novel Cover Showcase in Split Left --- */
.novel-cover-showcase {
    position: absolute; inset: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    z-index: 1;
}
.novel-cover-showcase img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.5) grayscale(20%);
    transition: filter 1s ease;
}
.novel-cover-showcase:hover img { filter: brightness(0.7) grayscale(0%); }

.novel-auto-cover {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', sans-serif; font-size: 6rem; font-weight: 900;
    color: rgba(255,255,255,0.08); letter-spacing: 10px;
    background: linear-gradient(135deg, #0a0a14 0%, #14141e 50%, #0a0a14 100%);
}

/* --- Novel Grid (Library) --- */
.novel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(6,182,212,0.3) transparent;
}
.novel-grid::-webkit-scrollbar { width: 4px; }
.novel-grid::-webkit-scrollbar-thumb { background: rgba(6,182,212,0.3); border-radius: 2px; }

.novel-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}
.novel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6,182,212,0.3);
    box-shadow: 0 12px 40px rgba(6,182,212,0.15), 0 0 20px rgba(6,182,212,0.08);
}

.novel-card-cover {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover; display: block;
    background: #08080a;
}

.novel-card-auto {
    width: 100%; aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 900;
    color: rgba(255,255,255,0.15); letter-spacing: 4px;
}

.novel-card-info {
    padding: 14px;
    background: rgba(5,5,8,0.8);
}
.novel-card-title {
    font-family: 'Orbitron', sans-serif; font-size: 0.75rem;
    color: #fff; font-weight: 600; letter-spacing: 0.5px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 4px;
}
.novel-card-author {
    font-size: 0.65rem; color: var(--text-dim);
    font-family: 'Inter', sans-serif; margin-bottom: 8px;
}
.novel-card-meta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; flex-wrap: wrap;
}
.novel-card-chapters {
    font-size: 0.6rem; color: var(--neon-cyan);
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.5px;
}
.novel-card-rating {
    font-size: 0.6rem; color: #fbbf24;
    font-family: 'Inter', sans-serif;
}
.novel-card-status {
    font-size: 0.5rem; padding: 2px 6px;
    border-radius: 4px; letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif; font-weight: 600;
    text-transform: uppercase;
}
.novel-card-status.ongoing {
    color: #10b981; border: 1px solid rgba(16,185,129,0.3);
    background: rgba(16,185,129,0.08);
}
.novel-card-status.completed {
    color: #06b6d4; border: 1px solid rgba(6,182,212,0.3);
    background: rgba(6,182,212,0.08);
}

/* --- Novel Detail View (inside split-right) --- */
.novel-back-btn {
    background: none; border: none; color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif; font-size: 0.75rem;
    letter-spacing: 2px; cursor: pointer; margin-bottom: 20px;
    padding: 8px 0; transition: all 0.3s;
}
.novel-back-btn:hover { color: #fff; text-shadow: 0 0 10px var(--neon-cyan); }

.novel-detail-header {
    display: flex; gap: 25px; margin-bottom: 30px;
    align-items: flex-start;
}
.novel-detail-cover {
    width: 150px; flex-shrink: 0; border-radius: 10px;
    overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.novel-detail-cover img, .novel-detail-cover .novel-card-auto {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
}
.novel-detail-info { flex: 1; }
.novel-detail-title {
    font-family: 'Orbitron', sans-serif; font-size: 1.3rem;
    color: #fff; font-weight: 700; margin-bottom: 6px; letter-spacing: 1px;
}
.novel-detail-author {
    font-size: 0.85rem; color: var(--text-secondary);
    margin-bottom: 12px;
}
.novel-detail-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
    line-height: 1.7; margin-bottom: 16px; max-height: 120px;
    overflow-y: auto;
}
.novel-detail-stats {
    display: flex; gap: 20px; align-items: center;
    margin-bottom: 16px; flex-wrap: wrap;
}
.novel-stat-badge {
    font-size: 0.7rem; padding: 4px 10px; border-radius: 20px;
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.7);
}

/* Star Rating Widget */
.novel-rating-widget {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.novel-stars {
    display: flex; gap: 3px;
}
.novel-star {
    cursor: pointer; font-size: 1.3rem; color: rgba(255,255,255,0.15);
    transition: all 0.2s; user-select: none;
}
.novel-star.filled { color: #fbbf24; text-shadow: 0 0 8px rgba(251,191,36,0.5); }
.novel-star:hover { color: #fbbf24; transform: scale(1.2); }
.novel-rating-text {
    font-size: 0.7rem; color: var(--text-dim);
    font-family: 'Inter', sans-serif;
}

/* Chapter List */
.novel-chapter-list {
    max-height: calc(100vh - 400px); overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: rgba(6,182,212,0.2) transparent;
}
.novel-chapter-list::-webkit-scrollbar { width: 4px; }
.novel-chapter-list::-webkit-scrollbar-thumb { background: rgba(6,182,212,0.2); border-radius: 2px; }

.novel-chapter-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; border-radius: 8px;
    cursor: pointer; transition: all 0.3s;
    border: 1px solid transparent; margin-bottom: 4px;
    background: rgba(255,255,255,0.02);
}
.novel-chapter-item:hover {
    background: rgba(6,182,212,0.06);
    border-color: rgba(6,182,212,0.15);
}
.novel-chapter-num {
    font-family: 'Orbitron', sans-serif; font-size: 0.7rem;
    color: var(--neon-cyan); width: 30px; text-align: center; flex-shrink: 0;
    opacity: 0.6;
}
.novel-chapter-title-text {
    font-size: 0.85rem; color: rgba(255,255,255,0.8);
    font-family: 'Inter', sans-serif; flex: 1;
}
.novel-chapter-read-badge {
    font-size: 0.5rem; color: #10b981;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid rgba(16,185,129,0.3);
    padding: 2px 6px; border-radius: 4px;
}

/* ═══ NOVEL READER (Full Screen) ═══ */
.novel-reader-overlay {
    position: fixed; inset: 0; z-index: 200000;
    background: #0a0a12;
    display: flex; flex-direction: column;
    opacity: 1; transition: opacity 0.4s ease;
}
.novel-reader-overlay.hidden { opacity: 0; pointer-events: none; }

.novel-reader-progress {
    position: absolute; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), #a855f7);
    width: 0%; z-index: 10; transition: width 0.2s;
    box-shadow: 0 0 8px var(--neon-cyan);
}

.novel-reader-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 30px; border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(5,5,8,0.95); flex-shrink: 0;
    backdrop-filter: blur(10px);
}
.novel-reader-back, .novel-reader-close {
    background: none; border: none; color: var(--text-secondary);
    cursor: pointer; font-size: 0.85rem; padding: 8px 14px;
    border-radius: 8px; transition: all 0.3s;
    font-family: 'Orbitron', sans-serif; letter-spacing: 1px;
}
.novel-reader-back:hover, .novel-reader-close:hover {
    color: #fff; background: rgba(255,255,255,0.05);
}
.novel-reader-title {
    display: flex; flex-direction: column; align-items: center;
    gap: 3px; flex: 1; text-align: center; min-width: 0;
}
.novel-reader-title span {
    font-family: 'Orbitron', sans-serif; font-size: 0.8rem;
    color: #fff; letter-spacing: 1px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 400px;
}
.novel-reader-title small {
    font-size: 0.65rem; color: var(--neon-cyan);
    font-family: 'JetBrains Mono', monospace; letter-spacing: 1px;
}

.novel-reader-body {
    flex: 1; overflow-y: auto; padding: 50px 20px 30px;
    scrollbar-width: thin; scrollbar-color: rgba(6,182,212,0.2) transparent;
}
.novel-reader-body::-webkit-scrollbar { width: 4px; }
.novel-reader-body::-webkit-scrollbar-thumb { background: rgba(6,182,212,0.2); border-radius: 2px; }

.novel-reader-content {
    max-width: 720px; margin: 0 auto;
    font-family: 'Inter', Georgia, 'Times New Roman', serif;
    font-size: 1.05rem; line-height: 1.85;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.2px;
}
.novel-reader-content p {
    margin-bottom: 1.5em;
    text-indent: 0;
}

.novel-reader-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 30px; border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(5,5,8,0.95); flex-shrink: 0;
    backdrop-filter: blur(10px);
}
.novel-nav-btn {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary); cursor: pointer; padding: 10px 20px;
    border-radius: 8px; font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem; letter-spacing: 1px; transition: all 0.3s;
}
.novel-nav-btn:hover:not(:disabled) {
    color: #fff; border-color: var(--neon-cyan);
    background: rgba(6,182,212,0.08);
    box-shadow: 0 0 15px rgba(6,182,212,0.15);
}
.novel-nav-btn:disabled {
    opacity: 0.3; cursor: not-allowed;
}
.novel-chapter-indicator {
    font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
    color: var(--text-dim); letter-spacing: 1px;
}

/* ═══ NOVEL COMMENTS ═══ */
.novel-reader-comments {
    max-width: 720px; margin: 60px auto 0;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06);
}
.novel-reader-comments h3 {
    font-family: 'Orbitron', sans-serif; font-size: 0.9rem;
    color: var(--neon-cyan); letter-spacing: 2px; margin-bottom: 20px;
}
.novel-comment-form {
    display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px;
}
.novel-comment-form input,
.novel-comment-form textarea {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; color: #fff;
    font-family: 'Inter', sans-serif; font-size: 0.9rem;
    outline: none; transition: border-color 0.3s;
    resize: vertical;
}
.novel-comment-form input:focus,
.novel-comment-form textarea:focus {
    border-color: var(--neon-cyan);
}
.novel-comment-form textarea { min-height: 80px; }
.novel-comment-submit {
    align-self: flex-end; padding: 10px 24px;
    background: rgba(6,182,212,0.1); border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan); font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem; letter-spacing: 2px; border-radius: 8px;
    cursor: pointer; transition: all 0.3s;
}
.novel-comment-submit:hover {
    background: var(--neon-cyan); color: #000;
    box-shadow: 0 0 20px rgba(6,182,212,0.4);
}

.novel-comment-list {
    display: flex; flex-direction: column; gap: 16px;
}
.novel-comment-item {
    padding: 16px; border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.3s;
}
.novel-comment-item:hover {
    border-color: rgba(255,255,255,0.08);
}
.novel-comment-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px;
}
.novel-comment-name {
    font-family: 'Orbitron', sans-serif; font-size: 0.75rem;
    color: var(--neon-cyan); letter-spacing: 1px; font-weight: 600;
}
.novel-comment-date {
    font-size: 0.6rem; color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}
.novel-comment-body {
    font-size: 0.85rem; color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* --- Novel Library Empty State --- */
.novel-empty {
    text-align: center; padding: 60px 20px;
    color: var(--text-dim);
}
.novel-empty-icon { font-size: 3rem; margin-bottom: 15px; opacity: 0.3; }
.novel-empty p {
    font-family: 'Inter', sans-serif; font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .novel-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    .novel-detail-header { flex-direction: column; align-items: center; text-align: center; }
    .novel-detail-cover { width: 120px; }
    .novel-detail-stats { justify-content: center; }
    .novel-reader-header { padding: 12px 16px; }
    .novel-reader-title span { font-size: 0.65rem; max-width: 200px; }
    .novel-reader-body { padding: 30px 16px 20px; }
    .novel-reader-content { font-size: 0.95rem; line-height: 1.75; }
    .novel-reader-footer { padding: 12px 16px; }
    .novel-nav-btn { padding: 8px 14px; font-size: 0.6rem; }
    .novel-reader-comments { margin-top: 40px; padding-top: 25px; }
}
