.elementor-267 .elementor-element.elementor-element-0b6a6ff{--display:flex;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-b025c41 */#trivial-juego {
    text-align: center;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 20px auto;
    padding: 20px;
    background-color: #f0f8ff;
    border-radius: 15px;
    max-width: 800px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

#trivial-juego h2 {
    color: #0073e6;
    font-size: 24px;
}

#turno-jugador {
    font-size: 20px;
    color: #333;
}

#tableros {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.tablero-jugador {
    text-align: center;
}

.tablero-jugador h3 {
    font-size: 18px;
    color: #0073e6;
}

#tablero1, #tablero2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.casilla {
    width: 50px;
    height: 50px;
    background-color: #ffdd99;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.casilla.correcta {
    background-color: #8bc34a; /* Verde */
    color: white;
}

.casilla.incorrecta {
    background-color: #e76f51; /* Rojo */
    color: white;
}

#pregunta-container {
    margin-top: 30px;
}

.nuevo-boton {
    background-color: #0073e6;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 15px;
    margin: 20px auto;
    display: inline-block;
    color: white;
    cursor: pointer;
}

.nuevo-boton:hover {
    background-color: #005bb5;
}

.respuesta-boton {
    background-color: #f4a261;
    color: white;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.respuesta-boton:hover {
    background-color: #e76f51;
}

#confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}/* End custom CSS */