.truth-body {
    background-color: #F8C8DC;
    min-height: 100vh;
}

.truth-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 16px 40px;
}

.truth-title {
    text-align: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    margin: 8px 0 4px;
    line-height: 1.15;
}

.truth-instructions {
    text-align: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    margin: 0 0 20px;
}

.scoreboard {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.score {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 10px 24px;
    text-align: center;
    min-width: 100px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.score-label {
    display: block;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.score-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
}

.truth-quotes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.truth-choice {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    background-color: white;
    border: 2px solid #2b1a22;
    border-radius: 14px;
    padding: 22px 28px 22px 52px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.5;
    color: #2b1a22;
    font-style: italic;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.truth-choice:hover:not(:disabled) {
    transform: translateY(-2px);
    background-color: #fce7ef;
    box-shadow: 0 8px 18px rgba(43, 26, 34, 0.18);
}

.truth-choice::before {
    content: attr(data-letter);
    position: absolute;
    left: 18px;
    top: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #5a3b4a;
    opacity: 0.75;
}

.truth-choice:disabled {
    cursor: not-allowed;
}

.truth-choice.real-revealed {
    background-color: #e8f5e8;
    border-color: #2a5d2a;
}

.truth-choice.fake-revealed {
    background-color: #fde2e2;
    border-color: #7a1f1f;
}

.truth-choice.picked {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7), 0 8px 18px rgba(43, 26, 34, 0.22);
}

.truth-tag {
    display: block;
    margin-top: 8px;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #5a3b4a;
    opacity: 0.9;
}

.truth-tag.real { color: #2a5d2a; }
.truth-tag.fake { color: #7a1f1f; }

.feedback {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: white;
    min-height: 40px;
    margin: 8px 0 12px;
    line-height: 1.3;
}

.feedback.correct { color: #2a5d2a; }
.feedback.wrong { color: #7a1f1f; }

.ctrl-btn {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    padding: 12px 28px;
    background-color: white;
    border: 2px solid #2b1a22;
    border-radius: 24px;
    cursor: pointer;
    color: #2b1a22;
    transition: background-color 0.2s, color 0.2s, transform 0.15s;
}

.ctrl-btn:hover:not(:disabled) {
    background-color: #2b1a22;
    color: white;
}

.ctrl-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.end-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.next-btn {
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .truth-title { font-size: 26px; }
    .truth-instructions { font-size: 16px; }
    .truth-choice { font-size: 16px; padding: 18px 22px 18px 46px; }
    .truth-choice::before { top: 16px; left: 14px; font-size: 18px; }
    .score { padding: 8px 18px; min-width: 80px; }
    .score-value { font-size: 26px; }
    .ctrl-btn { font-size: 18px; padding: 10px 22px; }
}
