/* Genel Sıfırlama ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a; /* Koyu mavi/uzay teması */
    color: #e2e8f0; /* Açık gri/beyaz metin */
    overflow: hidden; /* Sayfa taşmasını engelle */
}

/* Ana İçerik Konteyneri */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
    animation: fadeIn 1.5s ease-in-out;
}

/* Astronot İkonu ve Animasyonu */
.icon {
    font-size: 6rem; /* İkon boyutu */
    margin-bottom: 2rem;
    color: #67e8f9; /* Canlı bir siyan rengi */
    animation: float 4s ease-in-out infinite;
}

/* Başlık */
h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(103, 232, 249, 0.4);
}

/* Alt Başlık / Açıklama */
.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

/* Bilgi ve Sosyal Medya Bölümü */
.info p {
    font-weight: 400;
    margin-bottom: 1rem;
}

.social-links a {
    color: #e2e8f0;
    font-size: 1.5rem;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #67e8f9; /* Vurgu rengi */
    transform: translateY(-5px); /* Hafif yukarı kalkma efekti */
}

/* Alt Bilgi */
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8; /* Daha soluk bir renk */
    opacity: 0.7;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Mobil Cihazlar İçin Ayarlamalar */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .icon {
        font-size: 5rem;
    }
}