body {
    margin: 0;
    padding: 0;
    background: #ffffff; /* cielo azul simple */
    font-family: "Press Start 2P", "Courier New", monospace; /* tipografía retro pixel */
    text-align: center;
    color: #222;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Título estilo plataforma 8-bit */
h2 {
    margin-top: 60px;
    font-size: 36px;
    color: #b83e3e; /* amarillo brillante tipo moneda */
    font-weight: 700;
    text-shadow: 2px 2px #ffffff, -2px -2px #e41515; /* sombras tipo pixel block */
}

/* Caja estilo bloques/platform */
.container {
    margin-top: 50px;
    padding: 30px 40px;
    background: #70c1b3; /* verde bloque plataforma */
    border-radius: 0; /* bloques cuadrados */
    border: 4px solid #000; /* borde pixel negro */
    box-shadow: 0 0 0 4px #fff inset; /* efecto pixelado */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Botones estilo retro infantil */
button {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 14px;
    font-family: inherit;
    color: #fff;
    background: #ff6f61; /* rojo bloque */
    border: 2px solid #000;
    border-radius: 0; /* bloque cuadrado */
    cursor: pointer;
    font-weight: 700;
    transition: 0.1s ease, transform 0.1s ease;
    box-shadow: 2px 2px #000;
}

button:hover {
    background: #ff8f71;
    transform: translateY(-3px);
}

/* Botón secundario estilo power-up */
.back-btn {
    margin: 30px 0 60px 0;
    padding: 12px 28px;
    font-size: 14px;
    font-family: inherit;
    color: #000000;
    background: #fdfdfd; /* amarillo bloque */
    border: 2px solid #000;
    border-radius: 0;
    cursor: pointer;
    font-weight: 700;
    transition: 0.1s ease, transform 0.1s ease;
    box-shadow: 2px 2px #000;
}

.back-btn:hover {
    background: #ffe066;
    transform: translateY(-3px);
}