body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #151515 0%, #101010 100%) !important;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Fixierter Hintergrund (Sterne + UFO) --- */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    /* z-index: -1 !important; */      
}

/* --- Scrollender Inhalt über dem Hintergrund --- */
.page-content {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 10vh;
    padding-top: 0px;
    box-sizing: border-box;
}

/* --- Sterne --- */
.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

/* --- Sternschnuppen --- */
.shooting-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    animation: shoot 0.8s linear;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-300px) translateY(300px);
        opacity: 0;
    }
}

/* --- UFO Interaktive Stile --- */
.ufo {
    position: absolute;
    width: 40px;
    height: 20px;
    z-index: 999999 !important;
    animation: ufoPulse 2s infinite alternate;
    pointer-events: auto !important;
    cursor: pointer;
	z-index: 2 !important;
}

.ufo:hover {
    animation-play-state: paused;
}

.ufo.wiggle {
    animation: ufoWiggle 0.3s ease-in-out 3;
}

@keyframes ufoWiggle {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-3px) rotate(-5deg); }
    75% { transform: translateX(3px) rotate(5deg); }
}

.ufo-body {
    width: 40px;
    height: 12px;
    background: linear-gradient(90deg, #a0a0a0, #e0e0e0, #a0a0a0);
    border-radius: 20px 20px 5px 5px;
    position: relative;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.6),
        inset 0 2px 5px rgba(255, 255, 255, 0.4);
    pointer-events: auto !important;
}

.ufo-dome {
    width: 20px;
    height: 10px;
    background: radial-gradient(circle at 50% 30%, #66ccff, #0088cc);
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: 10px;
    box-shadow: 0 0 15px #66ccff;
}

.ufo-light {
    position: absolute;
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(100, 200, 255, 0.8), transparent);
    top: 12px;
    left: 18px;
    transform-origin: top center;
    animation: ufoBeam 1.5s infinite ease-in-out;
    filter: blur(1px);
}

.ufo-speech-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 10px;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 999999 !important;
    pointer-events: none !important;
}

.ufo-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9) transparent transparent transparent;
}

.ufo-fist {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 30% 30%, #66ccff, #0088cc);
    border-radius: 50%;
    top: -10px;
    left: 15px;
    display: none;
    z-index: 999999 !important;
    animation: fistShake 0.3s ease-in-out 3;
    pointer-events: none !important;
}

@keyframes fistShake {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes ufoPulse {
    0% { filter: brightness(1) drop-shadow(0 0 5px #66ccff); }
    100% { filter: brightness(1.3) drop-shadow(0 0 15px #66ccff); }
}

@keyframes ufoBeam {
    0%, 100% { transform: rotate(-5deg); opacity: 0.7; }
    50% { transform: rotate(5deg); opacity: 1; }
}