body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a; /* Koyu arka plan */
    color: #e0e0e0; /* Açık metin rengi */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Tam ekran yüksekliği */
    overflow: hidden; /* Taşmayı engelle */
    position: relative;
    text-align: center;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, #333, transparent 70%),
                radial-gradient(circle at bottom right, #555, transparent 70%);
    opacity: 0.3;
    animation: backgroundMove 20s infinite alternate ease-in-out;
    z-index: -1; /* İçeriğin arkasında kalması için */
}

@keyframes backgroundMove {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.container {
    background-color: rgba(30, 30, 30, 0.8); /* Yarı saydam koyu kutu */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Derin gölge */
    max-width: 600px;
    width: 90%;
    backdrop-filter: blur(10px); /* Windows 11 tarzı bulanıklık efekti */
    border: 1px solid rgba(70, 70, 70, 0.5); /* Hafif kenarlık */
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-wrapper {
    margin-bottom: 30px;
}

/* Yeni ikon için stil */
.building-icon {
    width: 80px;
    height: 80px;
    color: #0078d4; /* Windows mavisi */
    animation: bounceAndScale 3s infinite ease-in-out; /* Yeni animasyon */
}

/* Yeni ikon animasyonu */
@keyframes bounceAndScale {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #f0f0f0;
    font-weight: 600;
    letter-spacing: 1px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #c0c0c0;
}

.progress-bar {
    width: 80%;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
    margin: 30px auto;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.progress {
    height: 100%;
    width: 0%; /* JavaScript ile güncellenecek */
    background: linear-gradient(to right, #0078d4, #005bb5); /* Mavi tonları */
    border-radius: 5px;
    animation: fillProgress 3s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Yavaşça dolma animasyonu */
}

@keyframes fillProgress {
    from {
        width: 0%;
    }
    to {
        width: 75%; /* Örnek doluluk oranı, 'kuruluyor' hissiyatı için tam dolmasın */
    }
}

.eta-text {
    font-size: 1em;
    color: #909090;
    margin-top: -15px; /* İlerleme çubuğuna yakın olsun */
    font-weight: 300;
}

/* Sosyal medya bağlantıları kaldırıldığı için ilgili CSS kodları silindi */

/* Duyarlı Tasarım */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }
    p {
        font-size: 1em;
    }
    .container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    .container {
        padding: 20px;
    }
}