/* GALACTIC CORE CSS */
body {
    background: #05070a url(https://i.imgur.com/8Q8pY7n.jpg) no-repeat center center fixed !important; /* Temporärer Space-Hintergrund */
    background-size: cover !important;
    color: #cbd5e0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
}

#container {
    background: transparent !important;
    width: 85%;
    margin: auto;
}

/* Die Glas-Karten-Struktur */
.tborder {
    background: rgba(10, 15, 25, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.25) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    padding: 1px;
}

/* Der leuchtende Header der Foren */
.thead {
    background: linear-gradient(90deg, rgba(0, 180, 255, 0.3), rgba(114, 137, 218, 0.1)) !important;
    color: #00eaff !important;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.6);
    border-bottom: 2px solid #00eaff !important;
    padding: 12px !important;
    font-weight: bold;
    text-transform: uppercase;
}

/* Foren-Zeilen & Member-Zeilen */
.trow1, .trow2 {
    background: rgba(20, 26, 38, 0.6) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trow1:hover, .trow2:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    transition: 0.4s;
}

/* Links zum Leuchten bringen */
a:link, a:visited {
    color: #00d4ff;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #00d4ff;
}

/* Animation für das Hereinfliegen */
@keyframes galactic-slide {
    from { opacity: 0; transform: translateX(-50px); filter: blur(10px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.sidebar-box {
    animation: galactic-slide 0.8s ease-out forwards;
    background: rgba(10, 15, 25, 0.8);
    border-left: 3px solid #00d4ff;
    border-radius: 0 10px 10px 0;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.sidebar-header {
    color: #00d4ff;
    text-transform: uppercase;
    font-size: 0.85em;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.sidebar-header i { margin-right: 8px; }

/* Pulsierender Effekt für das Radio */
.radio-playing {
    color: #ff00ff;
    text-shadow: 0 0 8px #ff00ff;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}