/* Styles für die Statistik-Ansicht */

/* Verschwommene Darstellung der Fragen, wenn das Quiz noch nicht abgeschlossen wurde */
.stats-question-text.is-blurred, .question-text-highlight.is-blurred {
    filter: blur(6px);
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
    transition: filter 0.5s ease;
    display: inline-block;
    width: 100%;
}

/* Hinweis-Text für gesperrte Fragen */
.stats-unlock-hint {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-orange, #ec430f);
    margin-top: 5px;
    font-weight: bold;
    font-style: italic;
}

/* Hilfe-Indikator für die Top-Fragen */
.help-icon-hint {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.4;
    transition: all var(--transition-fast);
    animation: help-pulse 2.5s infinite ease-in-out;
}

.top-question-card:hover .help-icon-hint {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
    animation: none; /* Animation stoppen, wenn gehovert wird */
}

.info-click-hint {
    margin-top: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(5px);
    transition: all var(--transition-normal);
}

.top-question-card:hover .info-click-hint {
    opacity: 0.7;
    transform: translateY(0);
}

/* Sanfte Puls-Animation für den Statistik-Hinweis */
.hint-pulse {
    display: block;
    animation: hint-soft-pulse 2.5s infinite ease-in-out;
    transform-origin: left center;
}

@keyframes hint-soft-pulse {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.8; transform: scale(1); }
}