.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loading-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.loading-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loading-text {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-align: center;
    animation: bounce 1s infinite;
}

.loading-text h2 {
    color: #4CAF50;
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.loading-text .emoji {
    font-size: 30px;
    margin: 10px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Nokta animasyonu için stil */
.dots {
    display: inline-block;
}

.dots::after {
    content: '';
    animation: dots 2s infinite;
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: ''; }
}
