/* Importación de la fuente temática */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Estilos generales del cuerpo */
body {
    font-family: 'Press Start 2P', cursive;
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg, #111, #222);
    color: #fff;
    text-align: center;
    overflow: hidden; /* Para evitar barras de desplazamiento innecesarias */
}

/* Fondo con neón */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 150, 0.2), rgba(0, 0, 0, 0.7));
    z-index: -1;
    mix-blend-mode: screen;
}

/* Estilo del encabezado */
h1 {
    margin-top: 100px;
    font-size: 3em;
    text-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f, 0 0 30px #ff007f, 0 0 40px #ff007f;
}

/* Estilo del párrafo */
p {
    font-size: 1.5em;
    margin: 20px 0;
    text-shadow: 0 0 5px #ff007f, 0 0 10px #ff007f;
}

/* Estilo de los botones */
.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 20px;
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(145deg, #333, #555);
    text-decoration: none;
    border: 2px solid #ff007f;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 150, 0.7);
    transition: all 0.3s ease;
}

/* Efecto hover en los botones */
.button:hover {
    background: linear-gradient(145deg, #555, #333);
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.9);
    color: #ff007f;
}

/* Efecto active en los botones */
.button:active {
    background: linear-gradi
