/* Estilos Específicos para Frases Verdaderas o Falsas */

.phrase-game-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.photo-display-box {
    width: 260px;
    height: 260px;
    background-color: var(--bg-surface);
    border: 3px solid var(--accent-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.25);
}

/* IMAGEN AL 200% DE SU TAMAÑO */
.photo-emoji {
    font-size: 8rem;
    line-height: 1;
    user-select: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sentence-box {
    background-color: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    max-width: 650px;
    width: 100%;
    text-align: center;
}

.sentence-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
}

.vf-buttons-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.btn-vf {
    flex: 1;
    padding: 1.1rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.2s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.btn-vf.btn-true {
    background-color: var(--accent-green);
    color: #ffffff;
}

.btn-vf.btn-false {
    background-color: var(--accent-red);
    color: #ffffff;
}

.btn-vf:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
}

.btn-vf:active {
    transform: scale(0.96);
}
