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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #d1d1d1; /* Gri arka plan */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

/* Şeffaf Beyaz Card */
.card {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    padding: 40px 50px;
    border-radius: 18px;
    text-align: center;
    width: 420px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 35px;
    color: #333;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-box {
    background: rgba(255, 255, 255, .45);
    padding: 15px 10px;
    border-radius: 10px;
    width: 80px;
    backdrop-filter: blur(3px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.time-box span {
    font-size: 34px;
    font-weight: 600;
    color: #222;
}

.time-box label {
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
    color: #555;
}
