/* Genel Ayarlar */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0;
    background-color: #222; /* Koyu gri arka plan */
    overflow: hidden; /* Animasyonun taşmasını engelle */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

/* Arka Plan Animasyonu */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(50,50,50,0.8), rgba(30,30,30,0.8));
    animation: gradientShift 20s ease infinite;
    z-index: -1; /* İçeriğin arkasında kalmasını sağlar */
    opacity: 0.8;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* İçerik Konteyneri */
.container {
    text-align: center;
    max-width: 800px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6); /* Hafif şeffaf arka plan */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px); /* Hafif bulanıklık efekti */
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1; /* Arka planın üstünde kalmasını sağlar */
    animation: fadeInScale 1.5s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Logo ve Slogan */
.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5em; /* Büyük ve dikkat çekici */
    font-weight: 700;
    color: #f8f8f8;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.logo-text:hover {
    color: #e0e0e0; /* Hafif vurgu */
}

.slogan {
    font-size: 1.4em;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 40px;
    color: #bbb;
}

/* Geri Sayım */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 10px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.03);
    background-color: rgba(255, 255, 255, 0.15);
}

.countdown-item span {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.countdown-item small {
    font-size: 0.9em;
    text-transform: uppercase;
    color: #ccc;
    letter-spacing: 1px;
}

/* İletişim Bilgileri ve Sosyal Medya */
.contact-info {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #aaa;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.8em;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif; /* Sosyal medya ikonları için */
    font-weight: bold;
}

.social-icon:hover {
    background-color: #666; /* Gri tonlarında hover efekti */
    transform: translateY(-3px) scale(1.1);
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .logo-text {
        font-size: 3em;
    }
    .slogan {
        font-size: 1.2em;
        margin-bottom: 30px;
    }
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
        margin-