.animated-logo {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Loading ekranı için genel stiller */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-center {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-center-absolute {
    position: absolute;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* SVG logo stilleri */
#loading .animated-logo {
    width: 200px;
    height: auto;
}

#loading .animated-logo #g1 {
    animation: pulse 2s ease-in-out infinite;
}

#loading .animated-logo path {
    fill: #ffffff;
}

@keyframes logoFadeAndGlow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(255,255,255,0.7));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 15px rgba(255,255,255,0.9));
    }
}

@keyframes logoFade {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes starTwinkle {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(0.95); 
    }
}

@keyframes starTwinkleLoader {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 3px rgba(155,143,72,0.7));
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95) rotate(180deg);
        filter: drop-shadow(0 0 8px rgba(155,143,72,0.9));
    }
}

@keyframes textReveal {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}