.angie-quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.angie-quiz-progress-bar {
    width: 100%;
    height: 8px;
    background: #eef2f5;
    border-radius: 4px;
    margin-bottom: 24px;
    overflow: hidden;
}

.angie-quiz-progress-fill {
    height: 100%;
    background: #4a90e2;
    width: 0%;
    transition: width 0.4s ease;
}

.angie-quiz-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-weight: bold;
    color: #333;
}

.angie-quiz-question-card {
    animation: slideIn 0.4s ease forwards;
}

.angie-quiz-question-text {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 24px;
}

.angie-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.angie-quiz-option {
    padding: 16px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.angie-quiz-option:hover {
    background: #eaf3fc;
    border-color: #4a90e2;
    transform: translateY(-2px);
}

.angie-quiz-option.correct {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.angie-quiz-option.incorrect {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.angie-quiz-feedback {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    background: #f8f9fa;
    display: none;
    animation: fadeIn 0.3s ease;
}

.angie-quiz-next-btn {
    margin-top: 24px;
    padding: 12px 32px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: none;
}

.angie-quiz-next-btn:hover {
    background: #357abd;
}

.angie-quiz-results {
    text-align: center;
    animation: slideIn 0.5s ease;
}

.angie-quiz-results h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.angie-quiz-score {
    font-size: 3rem;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 24px;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}