@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Varsayılan gradient arkaplan */
    /* Arkaplan görseli eklemek isterseniz: */
    /* background-image: url('images/background.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* Sayfa kaymasını engelle */
}

.container {
    background-color: rgba(0, 0, 0, 0.6); /* İçerik kutusu için yarı saydam arka plan */
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    animation: fadeIn 1s ease-out;
    display: flex; /* İçeriği dikeyde ortalamak için */
    flex-direction: column; /* İçeriği dikey sırala */
    align-items: center; /* İçeriği yatayda ortala */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo stili kaldırıldı */

h1 {
    font-size: 2.8em; /* Biraz büyütüldü */
    margin-bottom: 15px;
    font-weight: 700;
    color: #f0f0f0;
}

p {
    font-size: 1.1em;
    margin-bottom: 25px; /* Geri sayıma yer açmak için azaltıldı */
    font-weight: 300;
    line-height: 1.6;
    color: #d0d0d0;
    max-width: 500px; /* Paragraf genişliğini sınırlayalım */
}

/* Geri Sayım Stilleri */
#countdown {
    margin: 20px 0;
}

#countdown h2 {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px; /* Zaman birimleri arası boşluk */
}

.time-unit {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 10px;
    border-radius: 8px;
    min-width: 70px; /* Minimum genişlik */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span {
    font-size: 2.5em;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
}

.time-unit label {
    font-size: 0.8em;
    margin-top: 5px;
    color: #c0c0c0;
    text-transform: uppercase;
}

/* Sosyal Medya Stilleri */
.social-media {
    margin-top: 30px;
}

.social-media p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.social-media a {
    color: #ffffff;
    font-size: 1.6em;
    margin: 0 12px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* Transform için */
}

.social-media a:hover {
    color: #a8c0ff; /* Vurgu rengi */
    transform: scale(1.2); /* Hafif büyütme efekti */
}


footer {
    margin-top: 35px; /* Biraz azaltıldı */
    font-size: 0.9em;
    color: #a0a0a0;
}

/* Duyarlılık (Responsive) Ayarları */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    p {
        font-size: 1em;
    }

    .time-unit span {
        font-size: 2em;
    }
     .time-unit {
        min-width: 60px;
        padding: 12px 8px;
    }
    .timer {
        gap: 10px;
    }

    .container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 0.9em;
    }

     #countdown h2 {
        font-size: 1.2em;
    }

    .timer {
       flex-wrap: wrap; /* Küçük ekranlarda alt satıra geçsin */
       gap: 8px;
       justify-content: space-around; /* Eşit dağılım */
       max-width: 300px; /* Timer genişliğini sınırlayalım */
       margin: 0 auto; /* Ortala */
    }

    .time-unit {
        min-width: 65px; /* Biraz daha geniş */
        padding: 10px 5px;
        margin-bottom: 10px; /* Alt satıra geçenler için boşluk */
    }

    .time-unit span {
        font-size: 1.8em;
    }

     .time-unit label {
        font-size: 0.7em;
    }

    .social-media a {
        font-size: 1.4em;
        margin: 0 10px;
    }

    .container {
        padding: 25px 15px;
        width: 95%; /* Daha fazla genişlik */
    }

    /* Loader stili kaldırıldı */
}
