#magic-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50; /* Über allem, damit es "vor" dem Header fliegt */
    overflow: hidden;
}

/* Die fliegenden Wörter */
.magic-word {
    position: absolute;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0; /* Startet unsichtbar */
    pointer-events: none;
    will-change: transform, opacity, top, left; /* Performance Optimierung */
}

/* Magischer Glow Effekt */
.glow-cyan {
    color: #4CC9F0;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.8), 0 0 20px rgba(76, 201, 240, 0.4);
}

.glow-gold {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.4);
}

.glow-purple {
    color: #D946EF;
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.8), 0 0 20px rgba(217, 70, 239, 0.4);
}

/* Kleine Partikel (Funken) */
.magic-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px white;
    opacity: 0;
}