.mind-tools-quiz-wrapper {
    padding: 32px;
    background: #f7f9fc;
    border-radius: 12px;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.mtq-progress-container {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.mtq-progress-bar {
    height: 100%;
    background: #3b82f6;
    width: 0%;
    transition: width 0.3s ease;
}

.mtq-gamification {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #64748b;
}

.mtq-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    text-align: center;
    transition: transform 0.3s ease;
}

.mtq-question-text {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 30px;
}

.mtq-answers-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mtq-btn {
    padding: 16px 24px;
    border: 2px solid #e2e8f0;
    background: transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mtq-btn:hover {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #2563eb;
    transform: translateY(-2px);
}

.mtq-btn.correct {
    border-color: #22c55e;
    background: #f0fdf4;
    color: #16a34a;
}

.mtq-btn.incorrect {
    border-color: #ef4444;
    background: #fef2f2;
    color: #dc2626;
}