/* Estilos generales para el fondo y las partículas */
body {
    margin: 0;
    padding: 0;
    overflow: hidden; 
    background: #0D2A4F;
    font-family: sans-serif;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0D2A4F; 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
}

/* Estilos para el contenido centrado */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

/* Estilos para el botón de Inicio (Gradiente Turquesa/Ámbar) */
.inicio-button {
    /* Gradiente: Turquesa (#40e0d0) */
    background: linear-gradient(90deg, #02C6AA, #0097FF, #8BEBBA); 
    border: none;
    color: #000; /* Texto oscuro para contraste */
    padding: 1rem 3rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 50px; 
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Sombra para darle un efecto inicial de neón turquesa */
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.4); 
}

.inicio-button:hover {
    transform: scale(1.05);
    /* Sombra para darle un efecto de neón ámbar al pasar el ratón */
    box-shadow: 0 6px 20px rgba(255, 191, 0, 0.6); 
}