/* ===================================
   ANIMATED LOGO INTRO - NUR PNG!
   =================================== */

.animated-logo-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.animated-logo-intro.active {
    opacity: 1;
    visibility: visible;
}

.animated-logo-intro.finished {
    animation: fadeOutIntro 0.8s ease-out forwards;
}

@keyframes fadeOutIntro {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.logo-intro-container {
    width: 100%;
    max-width: 600px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-intro-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    opacity: 0;
    transform: scale(0.5);
    animation: logoIntroAnimation 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Logo Animation: Zoom in + Fade in */
@keyframes logoIntroAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-intro-container {
        max-width: 90%;
        padding: 20px;
    }
    
    .logo-intro-image {
        max-width: 350px;
    }
}
