body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0A0A0A;
    color: white;
    text-align: center;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #3A60F9;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

button {
    background: #00FFA3;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}

button:hover {
    transform: scale(1.05);
}

#countdown {
    font-size: 1.5rem;
    margin: 20px 0;
}
/* Partículas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0A0A0A;
    z-index: -1; /* Detrás del contenido */
}

.hero {
    position: relative; /* Asegura que el contenido esté sobre las partículas */
    z-index: 1;
}
