@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #080b13; /* Derin gece mavisi/siyah */
    color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Hafif Yıldızlı Gökyüzü Efekti */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1.5px 1.5px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 150px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 250px 160px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 330px 80px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 460px 120px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 500px 500px;
    opacity: 0.5;
    z-index: 1;
    animation: twinkle 4s infinite alternate;
}

/* Yıldızların hafifçe yanıp sönmesi */
@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Ana İçerik (Logo ve Yazı) */
.content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1; 
}

.logo-img {
    max-width: 250px; /* Logonun boyutunu buradan büyütebilir/küçültebilirsin */
    height: auto;
    margin-bottom: 15px;
}

.coming-soon {
    font-size: 1.1rem;
    font-weight: 300;
    color: #8a9bb8; /* Hafif soluk mavi/gri */
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* En alt kısım (Footer) */
footer {
    z-index: 2;
    padding: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

footer a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}