body {
    margin: 0;
    padding: 0;
    background-color: #fff7df;
    font-family: "Segoe UI", sans-serif;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #90143c;
    text-shadow: 0 0 15px #90143c;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #2D2D2D;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

#countdown div {
    background-color: #90143c;
    border-radius: 10px;
    padding: 1rem;
    width: 80px;
    box-shadow: 0 0 10px #90143c;
}

#countdown span {
    font-size: 2rem;
    font-weight: bold;
    color: #fff7df;
    text-shadow: 0 0 8px #fff7df;
    display: block;
}

#countdown label {
    font-size: 1rem;
    color: #fff7df;
    text-shadow: 0 0 5px #fff7df;
}
