body {
    background-color: #0d0d0d;
    color: white;
    /*font-family: 'Arial', sans-serif;*/
    font-family: 'hind', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

h1 { font-size: 3rem; margin-bottom: 10px; }

/* Efecto del cursor parpadeante */
.cursor {
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Contenedor de la cuenta regresiva */
#countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.time-block {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    min-width: 80px;
}

.time-block span {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}