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

/* Body Hintergrund & Schrift */
body {
    background-color: ;
    font-family: 'Arial', sans-serif;
    color: #39ff14;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container für Bild */
div[style*="position: relative"] {
    position: relative;
    display: inline-block;
}

/* Cover Image mit animierten Neon-Rändern */
#image {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #39ff14;
    box-shadow: 0 0 15px #39ff14, 0 0 30px #39ff14, 0 0 45px #39ff14;
    transition: all 0.3s ease;
    animation: neonBorder 3s infinite alternate;
    border-radius: 15px; /* optional abgerundete Ecken */
}

/* Hover Effekt */
#image:hover {
    transform: scale(1.05);
}

/* Neon Border Animation */
@keyframes neonBorder {
    0% {
        box-shadow: 0 0 15px #39ff14, 0 0 30px #39ff14, 0 0 45px #39ff14;
        border-color: #39ff14;
    }
    50% {
        box-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff;
        border-color: #0ff;
    }
    100% {
        box-shadow: 0 0 15px #39ff14, 0 0 30px #39ff14, 0 0 45px #39ff14;
        border-color: #39ff14;
    }
}

/* On Air / Off Air Overlay */
#live {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: ;
    padding: 8px 15px;
    border-radius: 0px;
    font-size: 12px;
    color: #39ff14;
    text-align: center;
    box-shadow: 0 0 15px #39ff14, 0 0 20px #39ff14;
    transition: all 0.3s ease;
}

#live.bottom {
    top: 0%;
    margin-top: 10px;
    transform: translateX(-50%);
}

/* Neon Circle mit animiertem Farbwechsel */
#live i.fas.fa-circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: #ff073a; /* Startfarbe Off Air */
    box-shadow: 0 0 5px #ff073a, 0 0 10px #ff073a, 0 0 20px #ff073a;
    animation: neonPulse 2s infinite alternate;
}

/* Text neben Kreis */
#live span {
    text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14;
}

/* Neon-Pulse Animation zwischen Rot (Off Air) und Grün (On Air) */
@keyframes neonPulse {
    0% {
        background-color: #ff073a; 
        box-shadow: 0 0 5px #ff073a, 0 0 10px #ff073a, 0 0 20px #ff073a;
    }
    50% {
        background-color: #39ff14; 
        box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14;
    }
    100% {
        background-color: #ff073a; 
        box-shadow: 0 0 5px #ff073a, 0 0 10px #ff073a, 0 0 20px #ff073a;
    }
}

/* Hidden Klasse */
.hidden {
    display: none;
}
