/* ===== MKPI ANIMATION STYLES ===== */
/* Beeindruckende Logo-Animation mit Umlaufbahnen für Live/Hybrid/Digital */
/* Erstellt für warmes, glühendes Orange-Design mit beweglichen Partikeln */

.mkpi-logo-animation {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.15) 0%, 
        rgba(255, 165, 0, 0.1) 30%, 
        rgba(255, 69, 0, 0.05) 60%, 
        transparent 100%);
    overflow: visible;
    animation: mainPulse 4s ease-in-out infinite, warmGlow 6s ease-in-out infinite alternate;
}

@keyframes mainPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 60px rgba(255, 69, 0, 0.7);
    }
}

@keyframes warmGlow {
    0% {
        background: radial-gradient(circle, 
            rgba(255, 140, 0, 0.15) 0%, 
            rgba(255, 165, 0, 0.1) 30%, 
            rgba(255, 69, 0, 0.05) 60%, 
            transparent 100%);
    }
    100% {
        background: radial-gradient(circle, 
            rgba(255, 69, 0, 0.2) 0%, 
            rgba(255, 140, 0, 0.12) 30%, 
            rgba(255, 165, 0, 0.08) 60%, 
            transparent 100%);
    }
}

/* Rotierende Ringe */
.rotating-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.6;
}

.ring-1 {
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border-color: rgba(255, 140, 0, 0.7);
    animation: rotateClockwise 20s linear infinite;
}

.ring-2 {
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    border-color: rgba(255, 69, 0, 0.6);
    animation: rotateCounterClockwise 25s linear infinite;
}

.ring-3 {
    top: 90px;
    left: 90px;
    right: 90px;
    bottom: 90px;
    border-color: rgba(255, 165, 0, 0.5);
    animation: rotateClockwise 30s linear infinite;
}

@keyframes rotateClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Logo in der Mitte */
.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
    width: 120px;
    height: 120px;
}

.logo-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.6));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { 
        filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.6));
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(0 0 35px rgba(255, 69, 0, 0.8));
        transform: scale(1.03);
    }
}

/* Orbitale Umlaufbahnen */
.orbital-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.orbit-1 {
    top: 120px;
    left: 120px;
    right: 120px;
    bottom: 120px;
    animation: orbitRotate 12s linear infinite;
}

.orbit-2 {
    top: 80px;
    left: 80px;
    right: 80px;
    bottom: 80px;
    animation: orbitRotate 18s linear infinite reverse;
}

.orbit-3 {
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    animation: orbitRotate 24s linear infinite;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.orbit-word {
    position: absolute;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: counterRotate 12s linear infinite, wordGlow 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    z-index: 95;
}

/* Gegenrotation damit die Worte immer lesbar bleiben */
.orbit-1 .orbit-word {
    animation: counterRotate1 12s linear infinite, wordGlow 3s ease-in-out infinite alternate;
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 .orbit-word {
    animation: counterRotate2 18s linear infinite reverse, wordGlow 3s ease-in-out infinite alternate;
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-3 .orbit-word {
    animation: counterRotate3 24s linear infinite, wordGlow 3s ease-in-out infinite alternate;
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes counterRotate1 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes counterRotate2 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes counterRotate3 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes wordGlow {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Spezifische Farben für jedes Wort */
.word-live {
    background: linear-gradient(45deg, #0d6efd, #6f42c1);
    animation-delay: 0s;
}

.word-hybrid {
    background: linear-gradient(45deg, #28a745, #20c997);
    animation-delay: 1s;
}

.word-digital {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    animation-delay: 2s;
}

/* Hover-Effekte für Orbitale Worte */
.orbit-word:hover {
    transform: translate(-50%, -50%) scale(1.15) !important;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.5);
    z-index: 110;
}

/* Hintergrund-Partikel */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Basis Partikel */
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}

/* Warme Farbpalette für Partikel */
.particle-1, .particle-7, .particle-13, .particle-19 {
    width: 3px; height: 3px;
    background: rgba(255, 140, 0, 0.8);
    top: 15%; left: 20%;
    animation: float1 6s ease-in-out infinite;
    animation-delay: 0s;
}

.particle-2, .particle-8, .particle-14, .particle-20 {
    width: 4px; height: 4px;
    background: rgba(255, 69, 0, 0.9);
    top: 25%; left: 75%;
    animation: float2 8s ease-in-out infinite;
    animation-delay: 1s;
}

.particle-3, .particle-9, .particle-15 {
    width: 5px; height: 5px;
    background: rgba(255, 165, 0, 0.7);
    top: 70%; left: 30%;
    animation: spiral 10s linear infinite;
    animation-delay: 2s;
}

.particle-4, .particle-10, .particle-16 {
    width: 3px; height: 3px;
    background: rgba(255, 99, 71, 0.8);
    top: 40%; left: 85%;
    animation: wave 7s ease-in-out infinite;
    animation-delay: 3s;
}

.particle-5, .particle-11, .particle-17 {
    width: 4px; height: 4px;
    background: rgba(255, 140, 0, 0.6);
    top: 85%; left: 15%;
    animation: float3 9s ease-in-out infinite;
    animation-delay: 4s;
}

.particle-6, .particle-12, .particle-18 {
    width: 6px; height: 6px;
    background: rgba(255, 69, 0, 0.5);
    top: 55%; left: 65%;
    animation: orbit 12s linear infinite;
    animation-delay: 5s;
}

/* Zusätzliche Bewegungsmuster */
.particle-7 { top: 35%; left: 45%; animation: zigzag 8s ease-in-out infinite; }
.particle-8 { top: 65%; left: 55%; animation: bounce 6s ease-in-out infinite; }
.particle-9 { top: 45%; left: 25%; animation: float4 10s ease-in-out infinite; }
.particle-10 { top: 75%; left: 85%; animation: drift 11s ease-in-out infinite; }
.particle-11 { top: 25%; left: 35%; animation: pulse 7s ease-in-out infinite; }
.particle-12 { top: 85%; left: 75%; animation: sway 9s ease-in-out infinite; }
.particle-13 { top: 15%; left: 65%; animation: float5 8s ease-in-out infinite; }
.particle-14 { top: 95%; left: 45%; animation: rise 12s ease-in-out infinite; }
.particle-15 { top: 5%; left: 85%; animation: float6 7s ease-in-out infinite; }
.particle-16 { top: 35%; left: 15%; animation: dance 10s ease-in-out infinite; }
.particle-17 { top: 55%; left: 95%; animation: float7 9s ease-in-out infinite; }
.particle-18 { top: 75%; left: 5%; animation: twirl 11s ease-in-out infinite; }
.particle-19 { top: 45%; left: 75%; animation: float8 8s ease-in-out infinite; }
.particle-20 { top: 65%; left: 35%; animation: glide 13s ease-in-out infinite; }

/* Funken-Partikel (kleine, schnelle) */
.spark {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    animation: sparkle 3s ease-in-out infinite;
}

.spark-1 { top: 20%; left: 30%; animation-delay: 0.5s; }
.spark-2 { top: 80%; left: 70%; animation-delay: 1.5s; }
.spark-3 { top: 40%; left: 20%; animation-delay: 2.5s; }
.spark-4 { top: 60%; left: 80%; animation-delay: 3.5s; }
.spark-5 { top: 10%; left: 50%; animation-delay: 4.5s; }
.spark-6 { top: 90%; left: 40%; animation-delay: 5.5s; }
.spark-7 { top: 30%; left: 90%; animation-delay: 6.5s; }
.spark-8 { top: 70%; left: 10%; animation-delay: 7.5s; }

/* Glühende große Partikel */
.glow-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.4;
    animation: glow 5s ease-in-out infinite alternate;
}

.glow-1 {
    background: radial-gradient(circle, rgba(255, 140, 0, 1) 0%, rgba(255, 140, 0, 0) 70%);
    top: 20%; left: 60%;
    animation-delay: 0s;
}

.glow-2 {
    background: radial-gradient(circle, rgba(255, 69, 0, 1) 0%, rgba(255, 69, 0, 0) 70%);
    top: 70%; left: 20%;
    animation-delay: 1s;
}

.glow-3 {
    background: radial-gradient(circle, rgba(255, 165, 0, 1) 0%, rgba(255, 165, 0, 0) 70%);
    top: 50%; left: 80%;
    animation-delay: 2s;
}

.glow-4 {
    background: radial-gradient(circle, rgba(255, 99, 71, 1) 0%, rgba(255, 99, 71, 0) 70%);
    top: 30%; left: 40%;
    animation-delay: 3s;
}

.glow-5 {
    background: radial-gradient(circle, rgba(255, 140, 0, 1) 0%, rgba(255, 140, 0, 0) 70%);
    top: 80%; left: 60%;
    animation-delay: 4s;
}

/* Verschiedene Animationen */
@keyframes float1 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-15px) scale(1.3); opacity: 0.9; }
}

@keyframes float2 {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateX(10px) translateY(-20px) scale(1.5); opacity: 1; }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(15px, -10px) scale(1.2); opacity: 0.8; }
    66% { transform: translate(-10px, -25px) scale(0.8); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -30px) rotate(180deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-20px) scale(1.4); }
    75% { transform: translateY(10px) scale(0.7); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 15px) scale(1.6); }
}

@keyframes float7 {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(15px, -40px); opacity: 0.3; }
}

@keyframes float8 {
    0%, 100% { transform: translateY(0); }
    33% { transform: translateY(-25px); }
    66% { transform: translateY(10px); }
}

@keyframes spiral {
    0% { transform: rotate(0deg) translateX(30px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
}

@keyframes wave {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-15px); }
    50% { transform: translateX(0) translateY(-30px); }
    75% { transform: translateX(-20px) translateY(-15px); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

@keyframes zigzag {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(25px, -20px); }
    50% { transform: translate(0, -40px); }
    75% { transform: translate(-25px, -20px); }
}

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

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.3); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(2); opacity: 1; }
}

@keyframes sway {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(40px); }
}

@keyframes rise {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(0.5); }
}

@keyframes dance {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(90deg); }
    50% { transform: translate(0, -30px) rotate(180deg); }
    75% { transform: translate(-20px, -15px) rotate(270deg); }
}

@keyframes twirl {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.5); }
}

@keyframes glide {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -25px); }
}

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

@keyframes glow {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.8); opacity: 0.7; }
}

/* Bewegungsanimationen für Akzent-Punkte */
@keyframes dotFloat1 {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    25% { 
        transform: translateY(-8px) scale(1.1); 
    }
    50% { 
        transform: translateY(-3px) scale(1.05); 
    }
    75% { 
        transform: translateY(-10px) scale(0.95); 
    }
}

@keyframes dotFloat2 {
    0%, 100% { 
        transform: translateX(0) scale(1); 
    }
    25% { 
        transform: translateX(-6px) scale(1.2); 
    }
    50% { 
        transform: translateX(-12px) scale(0.9); 
    }
    75% { 
        transform: translateX(-4px) scale(1.1); 
    }
}

@keyframes dotFloat3 {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    30% { 
        transform: translateY(10px) scale(1.15); 
    }
    60% { 
        transform: translateY(5px) scale(0.85); 
    }
    90% { 
        transform: translateY(8px) scale(1.05); 
    }
}

@keyframes dotFloat4 {
    0%, 100% { 
        transform: translateX(0) scale(1); 
    }
    20% { 
        transform: translateX(8px) scale(1.1); 
    }
    40% { 
        transform: translateX(12px) scale(0.95); 
    }
    60% { 
        transform: translateX(6px) scale(1.2); 
    }
    80% { 
        transform: translateX(10px) scale(0.9); 
    }
}

/* Pulsierende Akzent-Punkte */
.accent-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-1 {
    top: 10%;
    left: 50%;
    background: rgba(255, 140, 0, 0.9);
    animation: pulseDot 2s ease-in-out infinite, dotFloat1 8s ease-in-out infinite;
    animation-delay: 0s;
}

.dot-2 {
    top: 50%;
    right: 10%;
    background: rgba(255, 69, 0, 0.9);
    animation: pulseDot 2s ease-in-out infinite, dotFloat2 10s ease-in-out infinite;
    animation-delay: 0.5s;
}

.dot-3 {
    bottom: 10%;
    left: 50%;
    background: rgba(255, 165, 0, 0.9);
    animation: pulseDot 2s ease-in-out infinite, dotFloat3 12s ease-in-out infinite;
    animation-delay: 1s;
}

.dot-4 {
    top: 50%;
    left: 10%;
    background: rgba(255, 99, 71, 0.9);
    animation: pulseDot 2s ease-in-out infinite, dotFloat4 9s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .mkpi-logo-animation {
        width: 350px;
        height: 350px;
    }
    
    .logo-center {
        width: 90px;
        height: 90px;
    }
    
    .orbit-word {
        font-size: 1rem;
        padding: 8px 14px;
    }
    
    .orbit-1 {
        top: 90px;
        left: 90px;
        right: 90px;
        bottom: 90px;
    }
    
    .orbit-2 {
        top: 60px;
        left: 60px;
        right: 60px;
        bottom: 60px;
    }
    
    .orbit-3 {
        top: 30px;
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .mkpi-logo-animation {
        width: 280px;
        height: 280px;
    }
    
    .logo-center {
        width: 70px;
        height: 70px;
    }
    
    .orbit-word {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .orbit-1 {
        top: 75px;
        left: 75px;
        right: 75px;
        bottom: 75px;
    }
    
    .orbit-2 {
        top: 50px;
        left: 50px;
        right: 50px;
        bottom: 50px;
    }
    
    .orbit-3 {
        top: 25px;
        left: 25px;
        right: 25px;
        bottom: 25px;
    }
}

/* ===== ENDE MKPI ANIMATION STYLES ===== */
