/* Google Fonts: Müzik ve gelecek hissi için */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@400;600&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-panel: #111111;
    --neon-pink: #ff0055;
    --neon-blue: #00f0ff;
    --neon-purple: #9d00ff;
    --neon-green: #39ff14;
    --text-white: #f0f0f0;
    
    --header-height: 70px;
    --player-height: 80px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden; /* Kaydırmayı ana container'a vereceğiz */
}

/* ================== ÜST MENÜ (HEADER) ================== */
.gigly-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-panel);
    border-bottom: 2px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    text-shadow: 0 0 10px var(--neon-pink);
}

.logo span {
    color: var(--neon-pink);
}

.top-menu nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.top-menu nav ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.top-menu nav ul li a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

.gm-wallet {
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid var(--neon-purple);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.3);
    font-weight: bold;
    cursor: pointer;
}

/* ================== ANA İÇERİK (AJAX YÜKLEME ALANI) ================== */
.main-container {
    margin-top: var(--header-height);
    height: calc(100vh - var(--header-height) - var(--player-height));
    overflow-y: auto;
    padding: 20px;
    /* Neon Scrollbar */
}

.main-container::-webkit-scrollbar {
    width: 8px;
}
.main-container::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
.main-container::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 4px;
}

/* ================== SABİT ALT PLAYER ================== */
.gigly-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--player-height);
    background-color: var(--bg-panel);
    border-top: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-cover {
    width: 50px;
    height: 50px;
    background-color: #333;
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
}

.player-track-details h4 {
    color: var(--neon-blue);
    margin-bottom: 3px;
}

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

.play-btn {
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    transition: all 0.2s;
}

.play-btn:hover {
    background: var(--neon-green);
    color: #000;
}