/* assets/css/style.css */

/* Değişkenler - Neon Renk Paleti */
:root {
    --bg-dark: #0a0a0c;
    --bg-panel: rgba(20, 20, 25, 0.85);
    
    --neon-blue: #00f3ff;
    --neon-pink: #ff0055;
    --neon-purple: #b026ff;
    --neon-green: #00ff66;
    
    --text-main: #e0e0e0;
    --text-muted: #888899;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    /* Neon bir arkaplan deseni/gradyanı (isteğe bağlı) */
    background-image: radial-gradient(circle at 50% 0%, rgba(176, 38, 255, 0.05) 0%, transparent 50%);
}

/* ================= HEADER ================= */
.gm-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--bg-panel);
    backdrop-filter: blur(10px); /* Glassmorphism etkisi */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.neon-text-pink { color: var(--neon-pink); text-shadow: 0 0 10px var(--neon-pink); }
.neon-text-blue { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.4);
}

/* ================= MAIN CONTENT ================= */
#app-content {
    margin-top: 70px; /* Header yüksekliği kadar boşluk */
    margin-bottom: 90px; /* Player yüksekliği kadar boşluk */
    padding: 30px;
    min-height: calc(100vh - 160px);
}

.loading-neon {
    text-align: center;
    margin-top: 100px;
    color: var(--neon-pink);
    font-size: 20px;
    text-shadow: 0 0 15px var(--neon-pink);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; text-shadow: 0 0 25px var(--neon-pink); }
    100% { opacity: 0.5; }
}

/* ================= PLAYER (FOOTER) ================= */
.gm-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--bg-panel);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(176, 38, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 250px;
}

.track-art {
    width: 60px;
    height: 60px;
    background: #222;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.track-title { font-weight: 600; color: #fff; margin-bottom: 4px;}
.track-artist { font-size: 12px; color: var(--text-muted); }

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ctrl-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.ctrl-btn:hover { color: var(--neon-green); text-shadow: 0 0 10px var(--neon-green); }

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--neon-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.5);
}
.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(176, 38, 255, 0.8);
}

.player-extras {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 250px;
    justify-content: flex-end;
}

.volume-slider {
    width: 100px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    position: relative;
}
.volume-level {
    position: absolute;
    left: 0; top: 0; height: 100%;
    width: 70%;
    background: var(--neon-blue);
    border-radius: 3px;
    box-shadow: 0 0 8px var(--neon-blue);
}