/* RESET RETRO */
body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: "Times New Roman", Times, serif; /* Clásico de los 2000s */
    text-align: center;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* CAJA PRINCIPAL CON BORDE WEB 1.0 */
.container {
    background: #000000;
    border: 4px double #FF0000; /* Borde doble rojo sangre */
    padding: 30px;
    max-width: 550px;
    width: 100%;
}

/* TÍTULOS ESCALOFRIANTES */
h1 {
    color: #FF0000;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    font-size: 2.2em;
    letter-spacing: 3px;
    margin-top: 0;
    border-bottom: 1px dashed #FF0000;
    padding-bottom: 10px;
}

/* TEXTO DE ADVERTENCIA */
.warning {
    color: #FFFF00; /* Amarillo puro chillón */
    font-weight: bold;
    font-size: 16px;
    margin: 20px 0;
}

/* EFECTO PARPADEO (Simulando la vieja etiqueta <blink>) */
.blink {
    animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
    50% { opacity: 0; }
}

/* INPUT ESTILO AÑO 2002 */
input[type="text"] {
    background-color: #000000;
    color: #FF0000;
    border: 2px inset #555555; /* Borde hundido clásico */
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    width: 90%;
    margin-bottom: 20px;
    text-align: center;
}
input[type="text"]:focus {
    outline: none;
    border-color: #FF0000;
}

/* BOTONES RETRO */
button {
    background: #440000;
    color: #FFFFFF;
    border: 2px outset #ff3333; /* Borde sobresaliente 3D */
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    width: 100%;
    margin-top: 15px;
}
button:hover {
    background: #FF0000;
    border-style: inset; /* Se hunde al presionar */
}

/* LA LÁPIDA DEL RESULTADO */
.tombstone {
    border: 3px solid #555555;
    border-radius: 100px 100px 0 0; /* Forma de lápida */
    padding: 40px 20px;
    background: #111111;
    margin-top: 20px;
}
.tombstone h2 {
    color: #666666;
    margin-bottom: 0;
}
.tombstone p {
    font-family: 'Courier New', Courier, monospace;
    color: #CCCCCC;
    font-size: 18px;
    line-height: 1.5;
}

/* ESPACIO PUBLICITARIO */
.ad-slot { 
    margin-top: 30px; 
    border: 1px dotted #444; 
    padding: 20px; 
    color: #444; 
    font-family: Arial, sans-serif;
    font-size: 12px;
}