/* RADIO NEON V1 - ULTIMATIVE STYLE SHEET
    Features: Responsive Layout, Glass-Effect Panels, Neon-Animations
*/

/* --- GRUND-DESIGN --- */
html, body {
    background: #000a1a radial-gradient(circle at top, #002b55 0%, #00050a 100%) !important;
    background-attachment: fixed !important;
    color: #ffffff !important;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0; padding: 0;
    min-height: 100vh;
}

/* --- 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 #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.main-nav a {
    color: #00d4ff !important;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px #00d4ff;
}

/* --- USER DROPDOWN & AVATAR --- */
.user-dropdown {
    position: relative;
    cursor: pointer;
    padding: 5px 10px;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: bold;
}

.user-avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #00d4ff;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.arrow-down {
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #00d4ff;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0; top: 100%;
    background: #000a1a;
    border: 1px solid #00d4ff;
    min-width: 220px;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.6);
    border-radius: 0 0 8px 8px;
}

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

.dropdown-content a {
    color: #fff !important;
    padding: 12px 15px;
    display: block;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.dropdown-content a:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff !important;
}

/* --- LOGO, BANNER & PULSIERENDER SLOGAN --- */
.logo-area {
    text-align: center;
    padding: 50px 0;
}

.main-banner {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
    border-radius: 8px;
}

.logo-text {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 25px #00d4ff, 0 0 50px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    margin: 0;
}

.site-slogan {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 20px;
    animation: neonPulse 2s infinite alternate ease-in-out;
}

@keyframes neonPulse {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #00d4ff;
        opacity: 0.7;
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px #00d4ff, 0 0 40px #00d4ff;
        opacity: 1;
        transform: scale(1.03);
    }
}

/* --- HAUPT-LAYOUT (RESPONSIVE) --- */
#main-container {
    max-width: 1400px;
    margin: 20px auto 60px auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

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

/* --- PANELS (GLASS-LOOK) --- */
.glass-panel {
    background: rgba(0, 30, 60, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.4) !important;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
    overflow: hidden;
}

.panel-title {
    padding: 15px 20px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

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

.panel-content a {
    color: #00d4ff !important;
    text-decoration: none;
}

.panel-content a:hover {
    color: #fff !important;
    text-shadow: 0 0 5px #00d4ff;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px;
    opacity: 0.6;
    color: #00d4ff;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    margin-top: 50px;
}

/* RESPONSIVE FIX FÜR KLEINE BILDSCHIRME */
@media (max-width: 1000px) {
    #main-container { flex-direction: column; }
    #side-right { width: 100%; min-width: unset; }
    .logo-text { font-size: 2.5rem; }
}