* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #000428;  /* Gradient background */
    color: #f0f0f0;
    overflow: hidden;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(29,28,63,0.8), rgba(10,10,25,0.9));
    z-index: 0;
}

.coming-soon-container {
    position: relative;
    z-index: 1;
    width: 63%;
    padding: 99px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    animation: slideIn 1.5s ease-out;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 360px; /* Logo size further increased */
    height: auto;
    opacity: 0.9;
}

h1 {
    font-size: 3em; /* Heading size increased */
    margin-bottom: 15px;
    animation: fadeIn 2s ease-out forwards;
}

p {
    font-size: 1.5em; /* Text size increased */
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInText 2s 1s ease-out forwards;
}

.countdown {
    display: flex;
    gap: 25px;
    justify-content: center;
    animation: fadeInText 2s 1.5s ease-out forwards;
}

.countdown div {
    background: #556080;
    padding: 27px;
    border-radius: 50%; /* Circular shape */
    width: 135px; /* Fixed width and height for circles */
    height: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: #00e1ff;
    transition: transform 0.3s;
}

.countdown div {
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.2), 0 8px 16px rgba(0, 0, 0, 0.3);
}

.countdown span {
    font-size: 2.7em; /* Rakamların boyutunu küçülttük */
}

.countdown div:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.countdown span {
    font-weight: bold;
    animation: pulse 3s alternate;
    color: #00e1ff;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


.countdown div:after {
    content: attr(data-label); /* Display the label below numbers */
    margin-top: 8px;
    font-size: 0.9em;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.animated-text {
    color: #00e1ff;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 2px #00e1ff, 0 0 5px #00e1ff; }
    to { text-shadow: 0 0 5px #00e1ff, 0 0 10px #00e1ff; }
}

@keyframes slideIn {
    0% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInText {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Yıldız konteyneri */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

/* Her bir yıldız */
.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle 5s infinite ease-in-out;
}

/* Yıldız parlaması */
@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

/* Tablet ve daha küçük cihazlar için */
@media (max-width: 768px) {
    .coming-soon-container {
        width: 90%; /* Konteyneri daralt */
        padding: 20px;
    }

    .logo {
        width: 200px; /* Logonun boyutunu küçült */
    }

    h1 {
        font-size: 2em; /* Başlık boyutunu küçült */
    }

    .countdown div {
        width: 120px; /* Sayaç kutularının boyutunu küçült */
        height: 120px;
        padding: 36px;
    }

    .countdown div:after {
        font-size: 0.3em; /* "Days", "Hours", vb. etiketleri daha da küçült */
        margin-top: 2px; /* Etiketin yerleşimini ayarla */
    }    

    .countdown span {
        font-size: 1.5em; /* Rakam boyutunu küçült */
    }
}

/* Mobil cihazlar için */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    .countdown div {
        width: 60px;
        height: 60px;
        padding: 27px;
    }

    .countdown span {
        font-size: 1.2em;
    }
    .countdown div:after {
        font-size: 0.3em; /* "Days", "Hours", vb. etiketleri daha da küçült */
        margin-top: 2px; /* Etiketin yerleşimini ayarla */
    } 
}

@media (max-width: 480px) {
    .star {
        display: none; /* Mobilde yıldızları gizle */
    }
}



