:root {
    --primary-color: #3498db;
    --text-color: #333;
    --background-color: #f0f4f8;
    --container-bg-color: #fff;
    --border-radius: 10px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
}

.container {
    max-width: 700px;
    width: 90%;
    padding: 40px;
    background-color: var(--container-bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease-in-out;
}

.content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta düşsün */
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 400;
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2c3e50;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Küçük ekranlar için düzenlemeler */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .countdown-item span:first-child {
        font-size: 2.5rem;
    }
}