@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

body {
    background: #fdfdfd;
    color: #222;
    font-family: 'Caveat', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    max-width: 600px;
    text-align: center;
    padding: 20px;
}

.site-title {
    font-size: 4rem;
    margin-bottom: 0;
}

.slogan {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Geri sayım: Kutular yerine sadece sayılar ve alt yazılar */
.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 1rem;
    color: #999;
}

/* Form: Minimalist alt çizgi stili */
.subscribe-form {
    margin-top: 30px;
}

.subscribe-form input {
    border: none;
    border-bottom: 1px solid #222;
    background: transparent;
    font-family: inherit;
    font-size: 1.5rem;
    padding: 5px;
    width: 250px;
    outline: none;
}

.subscribe-form button {
    background: transparent;
    border: 1px solid #222;
    font-family: inherit;
    font-size: 1.2rem;
    padding: 5px 15px;
    cursor: pointer;
    margin-left: 10px;
    transition: 0.3s;
}

.subscribe-form button:hover {
    background: #222;
    color: #fff;
}