

.animation-container {
    position: fixed;
    width: auto;
    height: auto;
    overflow: visible;
    top: 0;
    right: 0;
    z-index: 9999;
}

/* Logo temel stilleri */
.kalite-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: none;
    pointer-events: auto;
}

/* Logo hover efekti - büyüme */
.kalite-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Container hover efekti - glow */
.logo-container:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    background: rgba(255, 255, 255, 0.1);
}

/* Baloncuk patlama animasyonu (yeni başlangıç) */
.kalite-bubble-pop-start {
    animation: kalite-bubblePopStart 2s ease-out forwards;
}

@keyframes kalite-bubblePopStart {
    0% {
        transform: scale(0.1);
        opacity: 0;
        border-radius: 0%;
    }
    30% {
        transform: scale(1.8);
        opacity: 0.6;
        border-radius: 30%;
    }
    60% {
        transform: scale(1.4);
        opacity: 0.8;
        border-radius: 45%;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        border-radius: 50%;
    }
}

/* Son küçülme animasyonu */
.kalite-shrink-to-position {
    animation: kalite-shrinkToPosition 1s ease-out forwards;
}

@keyframes kalite-shrinkToPosition {
    0% {
        transform: scale(1.2);
        opacity: 1;
    }
    50% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Logo başlangıç pozisyonu - görünmez başlangıç */
.logo-container {
    position: fixed;
    top: 15px;
    right: 20px;
    width: 150px;
    height: 150px;
    z-index: 100;
    opacity: 0;
    transform: scale(0.1);
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Son pozisyon - normal logo görünümü */
.kalite-final-position {
    transform: scale(1);
    opacity: 1;
    animation: kalite-finalBounce 0.8s ease-out;
    background: transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}

@keyframes kalite-finalBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-10px) scale(1.05);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Glow efekti */
.kalite-glow {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

/* Bubble parçacıkları için */
.kalite-bubble-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}

.kalite-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

@keyframes kalite-particle-float {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(var(--x, 0), var(--y, 0)) scale(1);
        opacity: 0;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .logo-container {
        width: 48px;
        height: 48px;
        top: 5px;
        left: 48%;
        transform: translateX(-48%);
        right: auto;
    }
}
