/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #092144;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Logo Stil */
.logo {
    width: 150px; /* Logonun genişliği */
    margin-bottom: 20px;
    animation: fadeInLogo 2s ease-out;
}

/* İkinci Bölümdeki Üst Logo Stil */
.top-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    animation: fadeInLogo 2s ease-out;
}

/* Başlangıç Animasyonu */
.intro {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #009ffd, #2a2a72);
    color: #fff;
    animation: fadeOut 2s ease-out 4s forwards;
}

.intro-content h1 {
    font-size: 3rem;
    animation: slideIn 1.5s ease-out;
}

.intro-content p {
    font-size: 1.5rem;
    margin-top: 1rem;
    animation: fadeIn 2s ease-out 1s;
}

/* Proje Durumu */
.working-status {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    animation: fadeIn 3s ease-out 5s forwards;
}

.status-content h2 {
    font-size: 2rem;
    color: #f4b400;
    margin-bottom: 1rem;
}

.status-content p {
    font-size: 1.2rem;
    color: #fff;
}

/* Yükleme Animasyonu */
.loader {
    margin-top: 2rem;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #f4b400;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
}

/* Animasyonlar */
@keyframes slideIn {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInLogo {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
