.angie-quiz-app {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.angie-quiz-header {
    margin-bottom: 24px;
}

.angie-quiz-progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.angie-quiz-progress-fill {
    height: 100%;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.angie-quiz-stats {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #475569;
}

.angie-quiz-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    text-align: center;
}

.angie-quiz-title {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 24px;
}

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

.angie-quiz-option {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: transparent;
    font-size: 1.1rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.angie-quiz-option:hover:not(:disabled) {
    border-color: #3b82f6;
    background: #eff6ff;
    transform: translateY(-2px);
}

.angie-quiz-option.correct {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.angie-quiz-option.incorrect {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.angie-quiz-results {
    text-align: center;
    padding: 40px 0;
}

.angie-quiz-score-circle {
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px auto;
}

.angie-quiz-btn {
    padding: 12px 24px;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.angie-quiz-btn:hover {
    background: #334155;
}
