.okay-container {
    max-width: 700px;
    margin: 80px auto 40px;
    padding: 0 24px;
}

.progress-section {
    margin-bottom: 32px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: #5bf;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #555;
    text-align: right;
}

.question-card {
    background: #060606;
    border: 1px solid #333;
    padding: 28px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-number {
    font-size: 11px;
    color: #555;
    margin-bottom: 8px;
}

.question-text {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.question-text.glitch {
    color: #5bf;
    font-weight: 500;
}

.answer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-btn {
    padding: 14px 20px;
    border: 1px solid #333;
    background: #0a0a0a;
    color: #ddd;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.12s ease;
    font-family: inherit;
    text-align: left;
}

.answer-btn:hover {
    border-color: #5bf;
    color: #5bf;
}

.answer-btn.active {
    background: #5bf;
    border-color: #5bf;
    color: #0a0a0a;
}

.answer-btn.correct.active {
    background: #4a4;
    border-color: #4a4;
}

.answer-btn.wrong.active {
    background: #a22;
    border-color: #a22;
}

.answer-btn.neutral.active {
    background: #5bf;
    border-color: #5bf;
}

.result-screen {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.result-title {
    font-size: 32px;
    font-weight: 700;
    color: #ddd;
    margin-bottom: 40px;
}

.result-scores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.score-box {
    background: #060606;
    border: 1px solid #333;
    padding: 24px;
}

.score-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.score-value {
    font-size: 48px;
    font-weight: 700;
    color: #5bf;
}

.share-btn {
    background: #0a0a0a;
    border: 1px solid #5bf;
    color: #5bf;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.12s ease;
    font-family: inherit;
    margin-top: 20px;
}

.share-btn:hover {
    background: #5bf;
    color: #0a0a0a;
}

.footer-info {
    text-align: center;
    font-size: 12px;
    color: #555;
    margin-top: 40px;
}