* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(background.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 20px;
}

h1 {
    font-size: clamp(1.4rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.target-date {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 48px;
    letter-spacing: 0.04em;
    text-align: center;
}

.timebox {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.time {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    min-width: 120px;
}

.time h2 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 8px;
}

.time p {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.payment-today {
    display: none;
    text-align: center;
}

.payment-today p {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #fff;
}

@media (max-width: 480px) {
    .timebox {
        gap: 12px;
    }

    .time {
        padding: 18px 22px;
        min-width: 100px;
    }
}
