/* ==========================================================================
   SKYFALL V3 - QUIZ SELECTOR
   ========================================================================== */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

.quiz-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #c2410c, #EA580C);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.quiz-question {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.quiz-question.active {
    opacity: 1;
    transform: translateX(0);
}

.quiz-option {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    border-color: rgba(234, 88, 12, 0.5);
    background: rgba(234, 88, 12, 0.05);
}

.quiz-option.selected {
    border-color: #EA580C;
    background: rgba(234, 88, 12, 0.1);
}

.quiz-result {
    text-align: center;
    padding: 3rem;
    background: rgba(234, 88, 12, 0.05);
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-radius: 12px;
}
