/* Sayfa düzeni */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(to bottom right, #1a82a5, #4c4274); /* Gradyan arka plan */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Başlık */
h1 {
    font-size: 3em;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
}

/* Simge */
.icon {
    font-size: 80px; /* Simge boyutu */
    margin-bottom: none; /* Simge ile başlık arasındaki boşluk */
    color: #ffd700; /* Altın rengi */
    text-shadow: 15px 15px 15px rgba(0, 0, 0, 0.7); /* Gölge */
}

/* Alt başlık */
p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0f7ff;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.7);
}

/* Sayaç kısmı */
.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.countdown div {
    text-align: center;
}

.countdown div span {
    display: block;
    font-size: 3em;
    font-weight: 100;
    color: #cae3f0;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

/* Sayaç altındaki açıklamalar */
.countdown div small {
    font-size: 1.2em;
    font-family: "Poppins-thin", sans-serif;
    color: #cfd8dc;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* İlerleme çubuğu alanı */
.progress-bar {
    width: 100%;
    height: 15px;
    background-color: #333;
    border-radius: 15px;
    margin: 20px auto;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Çubuğun dolu kısmı */
.progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #66e3ff, #ff5ca2);
    transition: width 1.5s ease;
    border-radius: 15px;
}

/* İlerleme yüzdesi */
.progress-text {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: none;
    letter-spacing: 1px;
    color: #fff59d;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* cop */
footer {
    position: absolute; /* Sayfanın en altında sabit kalmasını sağlamak için */
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 1em;
    color: #ffffff;
}

footer p {
    margin: 0;
    padding: 10px;
    color: #cfd8dc;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


/* Küçük ekranlar için mobil uyumlu düzen */
@media (max-width: 768px) {
    h1 {
        font-size: 1.3em;
    }

    p {
        font-size: 1em;
    }

    .countdown div span {
        font-size: 1.5em;
    }

    .countdown {
        gap: 15px;
        font-family: "Poppins-thin", sans-serif;
    }

    .progress-bar{
        width: 320px;
    }

    .progress-text{
        font-size: 0.92em;
    }

    .icon{
        font-size: 65px;
        text-shadow: 12px 12px 12px rgba(0, 0, 0, 0.7); /* Gölge */

    }

    footer {
        font-size: 0.65em;

    }
    
 
}
