/*
 * Custom Quiz Styles - Minimal CSS for Bootstrap 5
 * Only styles that Bootstrap doesn't provide
 */

/* 1. Animation pulse du timer (< 30 secondes) */
@keyframes timer-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.timer-critical {
    animation: timer-pulse 1s infinite;
}

/* 2. Gradient de la barre de progression */
.progress-bar-gradient {
    background: linear-gradient(90deg, #0d6efd, #198754) !important;
}

/* 3. Cercle de score (result.php) */
.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5em;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.score-circle.bg-success {
    background-color: #198754 !important;
    color: white;
}

.score-circle.bg-warning {
    background-color: #ffc107 !important;
    color: white;
}

.score-circle.bg-danger {
    background-color: #dc3545 !important;
    color: white;
}

/* 4. Positionnement hints clavier */
.option-wrapper {
    position: relative;
}

.keyboard-hint {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
