/* === BASE === */
a {
  color: #ff2222;
}
body {
    background-color: #000033;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    color: #00FF00;
    font-family: 'Pixelify Sans', sans-serif;
    text-align: center;
}

/* === LAYOUT PRINCIPAL (troll + bola lado a lado) === */
.layout-principal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 20px;
}

/* === SIDEBAR TROLL === */
.sidebar-troll {
    width: 250px;
    border: 3px dashed red;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    color: white;
    font-size: 14px;
}

/* === CONTENEDOR CENTRAL (la bola y su caja) === */
.contenedor {
    border: 3px double #FF00FF;
    margin: 0 auto;
    padding: 20px;
    width: 350px;
    background: rgba(0, 0, 0, 0.8);
}
/* === SIDEBAR TROLL === */
.sidebar-ruso {
    width: 250px;
    border: 3px dashed red;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    color: white;
    font-size: 14px;
}

/* === LA BOLA === */
#bola {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #333, #000);
    border-radius: 50%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px #9900FF;
}

/* === LA VENTANITA DE RESPUESTA === */
#ventana {
    width: 80px;
    height: 80px;
    background: #000066;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

#respuesta {
    color: #FFF;
    font-size: 12px;
    text-shadow: 0 0 5px cyan;
}

/* === ICONOS 88x31 === */
.iconos {
    margin-top: 15px;
}

/* === INPUT DE PREGUNTA === */
#pregunta {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    background: #000;
    color: #00FF00;
    border: 2px solid #FF00FF;
    font-family: 'Pixelify Sans', sans-serif;
}