/* Contenidor i estructura dels elements de la història */
.fq-screen {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* Elements de la història */
.fq-screen>div {
    flex: 1;
}

.fq-screen__img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-bottom: 12px;
}

.fq-screen__content {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fq-screen__question {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Contenidor de botons d'acció + estil dels botons del joc */
.fq-screen__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fq-player .fq-screen__btn {
    background-color: #FF8719;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    line-height: 1.2em;
    color: #fff;
    border: none;
    border-radius: 8px 8px 8px 8px;
    padding: 15px 30px 15px 30px;
}

.fq-player .fq-screen__btn:hover {
    background-color: #0A253A;
    color: #fff;
}

.fq-player .fq-screen__btn--secondary {
    background-color: #0A253A;
    color: #fff;
}

.fq-player .fq-screen__btn--secondary:hover {
    background-color: #FF8719;
    color: #fff;
}

/* Contenidor dels botons finals del joc */
.fq-player__footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 0 20px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .fq-screen {
        flex-direction: column;
    }

    .fq-player__footer {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
    }
}