/* RADIO NEON MASTER-TEMPLATE 
    Edition: Deep Neon Blue
    Version: 5.2 (Atmospheric Blue)
*/

:root {
    /* --- FARB-KONFIGURATION NEON BLUE --- */
    --neon-main: #0088ff;            /* Ein kräftiges, elektrisches Blau */
    --neon-glow: rgba(0, 136, 255, 0.4); 
    --bg-deep: #000814;              /* Sehr tiefes Dunkelblau für den Kontrast */
    --bg-gradient: #001a3d;          /* Sanfter blauer Schimmer für den Hintergrund */
}

/* --- GRUND-DESIGN & GLOBALE LINKS --- */
html {
    background-color: #000 !important;
}

body {
    background: transparent !important; 
    margin: 0; padding: 0;
    min-height: 100vh;
    color: #ffffff !important;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

/* Globaler Link-Fix für das gesamte Design */
a {
    color: var(--neon-main) !important;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px var(--neon-main);
}

/* --- BACKGROUND SLIDER (JS-VERSION) --- */
.bg-slider {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -10;
    overflow: hidden;
    background: var(--bg-deep) radial-gradient(circle at top, var(--bg-gradient) 0%, var(--bg-deep) 100%) !important;
}

.bg-slider .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0;
    filter: brightness(0.4) contrast(1.2) saturate(0.8);
    transition: opacity 2s ease-in-out, transform 10s linear;
    transform: scale(1.0);
}

.bg-slider .slide.active {
    opacity: 0.35;
    transform: scale(1.1);
}

/* MJ Kopf-Korrektur */
.bg-slider .slide:nth-child(1) { 
    background-position: center top !important; 
}

/* --- HEADER & NAVIGATION --- */
.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: rgba(0, 5, 15, 0.95);
    border-bottom: 2px solid var(--neon-main);
    box-shadow: 0 0 20px var(--neon-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.header-bar > div:first-child { flex: 1; display: flex; justify-content: flex-start; }

.main-nav { flex: 2; display: flex !important; justify-content: center !important; }

.main-nav ul {
    display: flex !important;
    list-style: none;
    gap: 25px;
    margin: 0; padding: 0;
}

.main-nav a {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
}

/* --- USER-MENÜ --- */
.user-nav-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1001; 
}

.user-dropdown:hover .dropdown-content { display: block !important; }

.user-avatar-img {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--neon-main);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0; top: 100%;
    background: #000814;
    border: 1px solid var(--neon-main);
    min-width: 200px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown-content a {
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-content a:hover { background: var(--neon-glow); color: #fff !important; }

/* --- LOGO AREA & SLOGAN --- */
.logo-area { text-align: center; padding: 60px 0 40px 0; }

.site-slogan {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 6px;
    animation: neonPulse 2s infinite alternate ease-in-out;
}

@keyframes neonPulse {
    from { text-shadow: 0 0 5px #fff, 0 0 10px var(--neon-main); opacity: 0.8; }
    to { text-shadow: 0 0 10px #fff, 0 0 20px var(--neon-main); opacity: 1; transform: scale(1.02); }
}

/* --- LAYOUT --- */
#main-container {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: flex; 
    gap: 30px; 
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

#side-center { flex: 2.5; }
#side-right { flex: 1; min-width: 320px; }

/* --- PANELS (GLASS-LOOK) --- */
.glass-panel {
    background: rgba(0, 8, 20, 0.65) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 136, 255, 0.3) !important;
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
}

.panel-title {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--neon-main) !important;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 136, 255, 0.2);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.panel-content { padding: 20px; color: #d0d0d0; line-height: 1.6; }

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 60px 20px;
    color: var(--neon-main);
    background: rgba(0,0,0,0.4);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--neon-glow);
}

/* MOBILE FIX */
@media (max-width: 1000px) {
    #main-container { flex-direction: column; }
    .header-bar { flex-direction: column; padding: 20px; }
}