/* --- Reseteo básico y estilos generales --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0c10; /* Un negro espacial profundo */
    color: #c5c6c7; /* Un gris claro para el texto */
    overflow: hidden; /* Evita barras de scroll innecesarias */
}

/* --- Contenedor de partículas (el fondo animado) --- */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1; /* Detrás del contenido */
}

/* --- Contenedor del texto --- */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh; /* Ocupa toda la altura de la pantalla */
    position: relative;
    z-index: 2; /* Encima del fondo de partículas */
    padding: 0 20px; /* Espacio en los lados en móviles */
}

/* --- Estilos del Título Principal (H1) --- */
.content h1 {
    font-size: 3rem; /* Tamaño de fuente grande */
    font-weight: 700;
    color: #66fcf1; /* Un color cian brillante y moderno */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(102, 252, 241, 0.7); /* Efecto de neón */
}

/* --- Estilos del Párrafo (P) --- */
.content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #c5c6c7;
    max-width: 600px; /* Limita el ancho para mejor lectura */
}

/* --- Adaptación para pantallas pequeñas (móviles) --- */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.2rem;
    }
    .content p {
        font-size: 1rem;
    }
}