.quiz-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 5% calc(100px + env(safe-area-inset-bottom, 0px));
}

.quiz-quit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.45);
}

.quiz-quit-bar-label {
  font-size: 0.88rem;
  color: #fca5a5;
  font-weight: 600;
  flex: 1;
  min-width: 120px;
}

.quiz-quit-bar-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.55);
  color: #fecaca;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.quiz-quit-bar-btn:hover {
  background: rgba(248, 113, 113, 0.35);
  color: #fff;
}

.quiz-save-bar-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.quiz-save-bar-quit {
  text-align: center;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  border-color: rgba(248, 113, 113, 0.5) !important;
  color: #fca5a5 !important;
}

.quiz-save-bar-quit:hover {
  background: rgba(248, 113, 113, 0.15) !important;
  color: #fecaca !important;
}

.quiz-hero {
  text-align: center;
  margin-bottom: 28px;
}

.quiz-hero h1 {
  font-size: 1.6rem;
  color: #facc15;
  margin-bottom: 8px;
}

.quiz-hero p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.quiz-disclaimer {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #fde68a;
  margin-bottom: 24px;
}

.quiz-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.quiz-level-badge {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #7dd3fc;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.quiz-palier {
  font-size: 0.8rem;
  color: #64748b;
}

.quiz-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.quiz-figure {
  margin: 0 0 16px;
  text-align: center;
}

.quiz-figure-frame {
  display: block;
  width: 100%;
  min-height: 160px;
  padding: 0;
  border: 2px solid rgba(250, 204, 21, 0.5);
  border-radius: 10px;
  background: #fff;
  cursor: zoom-in;
  overflow: hidden;
  line-height: 0;
}

.quiz-figure-frame:focus-visible {
  outline: 2px solid #facc15;
  outline-offset: 2px;
}

.quiz-figure-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.6);
  cursor: zoom-in;
  overflow: hidden;
}

.quiz-figure-img {
  display: block;
  width: 100%;
  min-height: 140px;
  max-height: 320px;
  object-fit: contain;
  background: #fff;
}

.quiz-figure-img--error {
  display: none;
}

.quiz-figure-error {
  margin: 0;
  padding: 20px 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #f87171;
  text-align: center;
  line-height: 1.45;
}

.quiz-figure-cap {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
}

.quiz-figure-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.quiz-figure-overlay img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.quiz-figure-overlay-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  line-height: 1;
  color: #f8fafc;
  background: none;
  border: none;
  cursor: pointer;
}

.quiz-question-subject {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid rgba(250, 204, 21, 0.45);
  border-radius: 10px;
  background: rgba(250, 204, 21, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quiz-question-subject-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #facc15;
}

.quiz-question-subject strong {
  font-size: 1.1rem;
  color: #fef9c3;
  line-height: 1.35;
}

.quiz-question-subject-ref {
  font-size: 0.82rem;
  color: #cbd5e1;
}

.quiz-question-context {
  margin: 0 0 12px;
  padding: 10px 14px;
  border-left: 3px solid #facc15;
  background: rgba(250, 204, 21, 0.08);
  color: #fde68a;
  font-size: 0.92rem;
  line-height: 1.45;
  border-radius: 0 8px 8px 0;
}

.quiz-norm-preamble-label {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.quiz-norm-preamble {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 3px solid #64748b;
  background: rgba(100, 116, 139, 0.12);
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 0 8px 8px 0;
  font-style: normal;
}

.quiz-question--full {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  line-height: 1.55;
}

.quiz-question {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 20px;
  color: #f1f5f9;
}

.quiz-statement {
  margin: 0 0 12px;
  padding: 14px 16px;
  border-inline-start: 3px solid #facc15;
  background: rgba(250, 204, 21, 0.08);
  border-radius: 0 10px 10px 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #fde68a;
  font-weight: 500;
}

.quiz-statement-note {
  margin: -4px 0 16px;
  font-size: 0.75rem;
  color: #64748b;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-margin-bottom: 96px;
}

.quiz-opt {
  display: block;
  width: 100%;
  text-align: start;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.6);
  color: #e2e8f0;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.quiz-opt:hover:not(:disabled) {
  border-color: #facc15;
  background: rgba(250, 204, 21, 0.08);
}

.quiz-opt:disabled {
  cursor: default;
}

.quiz-opt--correct {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
}

.quiz-opt--wrong {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.1);
}

.quiz-feedback {
  margin-top: 18px;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.quiz-feedback--ok {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #86efac;
}

.quiz-feedback--ko {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}

.quiz-ref {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #94a3b8;
}

a.quiz-ref {
  color: #7dd3fc;
  text-decoration: underline;
}

.quiz-actions--inline {
  margin-top: 12px;
  margin-bottom: 0;
}

.quiz-actions--inline:empty {
  display: none;
}

.quiz-source-hint {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
}

.quiz-source-box {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.quiz-source-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #38bdf8;
  margin-bottom: 6px;
}

.quiz-source-doc {
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.quiz-source-answer {
  font-size: 0.9rem;
  color: #facc15;
  margin-bottom: 10px;
  line-height: 1.45;
}

.quiz-source-label {
  color: #94a3b8;
  font-weight: 600;
}

.quiz-source-meta {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.quiz-source-meta li {
  margin-bottom: 4px;
}

.quiz-source-meta code {
  color: #7dd3fc;
  font-size: 0.88em;
}

.quiz-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.quiz-source-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
}

.quiz-source-btn--primary {
  background: #facc15;
  color: #0f172a;
  border-color: #facc15;
}

.quiz-source-btn:hover {
  filter: brightness(1.08);
}

.quiz-source-path {
  flex: 1 1 100%;
  font-size: 0.72rem;
  color: #64748b;
  word-break: break-all;
}

.quiz-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quiz-btn-next {
  background: #facc15;
  color: #0f172a;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}

.quiz-btn-next:hover {
  filter: brightness(1.05);
}

.quiz-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cbd5e1;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.quiz-modules {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.quiz-module-card {
  display: block;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s;
}

.quiz-module-card:hover {
  border-color: #facc15;
}

.quiz-module-card--active {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
}

.quiz-module-card--soon {
  opacity: 0.55;
  pointer-events: none;
}

.quiz-module-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #38bdf8;
}

.quiz-module-title {
  font-weight: 700;
  margin-top: 4px;
}

.quiz-module-meta {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 6px;
}

.quiz-result {
  text-align: center;
  padding: 32px 16px;
}

.quiz-result h2 {
  color: #4ade80;
  margin-bottom: 12px;
}

.quiz-score-label {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.quiz-score-final {
  margin: 8px auto 20px;
  padding: 20px 28px;
  max-width: 280px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 16px;
}

.quiz-score-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #facc15;
}

.quiz-score-sep,
.quiz-score-total {
  font-size: 1.5rem;
  font-weight: 600;
  color: #cbd5e1;
}

.quiz-score-pct {
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4ade80;
}

.quiz-ladder {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.quiz-ladder-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.quiz-ladder-step--done {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
}

.quiz-ladder-step--current {
  border-color: #facc15;
  color: #facc15;
}

.quiz-gameover h2 {
  color: #f87171;
}

.quiz-home-links {
  margin-top: 20px;
  text-align: center;
}

.quiz-build-tag {
  text-align: center;
  font-size: 0.72rem;
  color: #64748b;
  margin: -8px 0 12px;
}

.quiz-participant-setup {
  margin: 20px auto 0;
  max-width: 480px;
}

.quiz-participant-note {
  margin: 10px auto 0;
  max-width: 480px;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.quiz-participant-box--success {
  background: rgba(74, 222, 128, 0.1) !important;
  border-color: #4ade80 !important;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.35), 0 12px 32px rgba(0, 0, 0, 0.35) !important;
  animation: quiz-success-pop 0.45s ease-out;
}

@keyframes quiz-success-pop {
  0% {
    transform: scale(0.96);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.quiz-participant-success {
  text-align: center;
  padding: 8px 4px 4px;
}

.quiz-participant-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.2);
  border: 2px solid #4ade80;
  color: #4ade80;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 52px;
}

.quiz-participant-success h3 {
  color: #86efac;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.quiz-participant-success-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #facc15;
  margin-bottom: 8px;
  word-break: break-word;
}

.quiz-participant-success-sub {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 14px;
  line-height: 1.45;
}

.quiz-participant-edit {
  margin-top: 4px;
}

.quiz-ready-banner {
  margin: 24px auto 16px;
  max-width: 720px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(250, 204, 21, 0.12);
  border: 2px solid #facc15;
  text-align: center;
  animation: quiz-success-pop 0.5s ease-out;
}

.quiz-ready-banner h2 {
  color: #fde047;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.quiz-ready-banner p {
  color: #e2e8f0;
  font-size: 0.92rem;
}

.quiz-modules--ready .quiz-module-card--active {
  border-color: #facc15;
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.35);
  animation: quiz-module-glow 1.5s ease-in-out infinite;
}

@keyframes quiz-module-glow {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.25);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.5);
  }
}

.quiz-leaderboard-msg--wait {
  color: #7dd3fc;
}

.quiz-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.quiz-leaderboard-box--prominent {
  border-color: #facc15;
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.25), 0 12px 32px rgba(0, 0, 0, 0.35);
  animation: quiz-lb-pulse 2s ease-in-out 2;
}

.quiz-leaderboard-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fde047;
  margin-bottom: 6px;
  text-align: center;
}

@keyframes quiz-lb-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.25), 0 12px 32px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.45), 0 12px 32px rgba(0, 0, 0, 0.35);
  }
}

.quiz-lb-howto {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.quiz-lb-howto h2 {
  font-size: 1.05rem;
  color: #7dd3fc;
  margin-bottom: 10px;
}

.quiz-lb-howto ol {
  margin: 0 0 14px 1.2rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.55;
}

.quiz-lb-howto .quiz-btn-next {
  display: inline-flex;
  text-decoration: none;
}

.quiz-leaderboard-box {
  margin: 24px auto 0;
  max-width: 420px;
  text-align: start;
  padding: 20px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.quiz-leaderboard-box h3 {
  font-size: 1.05rem;
  color: #7dd3fc;
  margin-bottom: 8px;
  text-align: center;
}

.quiz-leaderboard-lead {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 14px;
}

.quiz-leaderboard-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 6px;
}

.quiz-leaderboard-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.7);
  color: #f1f5f9;
  font-size: 1rem;
  margin-bottom: 12px;
}

.quiz-leaderboard-input:focus {
  outline: none;
  border-color: #facc15;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12);
}

.quiz-leaderboard-submit {
  width: 100%;
}

.quiz-leaderboard-msg {
  margin-top: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.quiz-leaderboard-msg--ok {
  color: #86efac;
}

.quiz-leaderboard-msg--err {
  color: #fca5a5;
}

.quiz-leaderboard-hint {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}

.quiz-leaderboard-hint a {
  color: #7dd3fc;
}

.quiz-save-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
  border-top: 2px solid #facc15;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.quiz-save-bar-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quiz-save-bar-text {
  flex: 1;
  min-width: 0;
}

.quiz-save-bar-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fde047;
  margin-bottom: 2px;
}

.quiz-save-bar-score {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.25;
}

.quiz-save-bar-hint {
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.35;
  margin-top: 2px;
}

.quiz-save-bar-pseudo {
  font-size: 0.72rem;
  color: #7dd3fc;
  margin-top: 2px;
}

.quiz-save-bar-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.quiz-save-bar-btn {
  flex-shrink: 0;
  min-width: 0;
  padding: 10px 14px;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(250, 204, 21, 0.35);
}

.quiz-save-bar-btn:disabled {
  opacity: 0.45;
  box-shadow: none;
}

.quiz-save-bar-msg {
  max-width: 720px;
  margin: 8px auto 0;
  text-align: center;
}

@media (max-width: 560px) {
  .quiz-page {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .quiz-save-bar {
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .quiz-save-bar-inner {
    gap: 8px;
  }

  .quiz-save-bar-title,
  .quiz-save-bar-hint,
  .quiz-save-bar-pseudo {
    display: none;
  }

  .quiz-save-bar-score {
    font-size: 0.82rem;
    font-weight: 800;
    color: #fde047;
  }

  .quiz-save-bar-actions {
    gap: 6px;
  }

  .quiz-save-bar-btn {
    padding: 9px 11px;
    font-size: 0.76rem;
  }

  .quiz-save-bar-quit {
    padding: 7px 9px;
    font-size: 0.74rem;
  }

  .quiz-quit-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .quiz-quit-bar-btn {
    justify-content: center;
  }
}

.quiz-lb-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.quiz-lb-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quiz-lb-filter {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.quiz-lb-filter--active {
  border-color: #facc15;
  background: rgba(250, 204, 21, 0.12);
  color: #fde047;
}

.quiz-lb-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.quiz-lb-table th,
.quiz-lb-table td {
  padding: 12px 14px;
  text-align: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.quiz-lb-table th {
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quiz-lb-table tbody tr:hover {
  background: rgba(250, 204, 21, 0.04);
}

.quiz-lb-rank {
  font-weight: 800;
  width: 56px;
}

.quiz-lb-pseudo {
  font-weight: 700;
  color: #f1f5f9;
}

.quiz-lb-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
  font-size: 0.7rem;
  vertical-align: middle;
}

.quiz-lb-score {
  color: #facc15;
  font-weight: 700;
}

.quiz-lb-pct {
  color: #4ade80;
  font-weight: 600;
}

.quiz-lb-modules {
  color: #94a3b8;
}

.quiz-lb-empty {
  text-align: center;
  color: #64748b;
  padding: 28px !important;
}

.quiz-lb-status {
  text-align: center;
  color: #94a3b8;
  padding: 40px 16px;
}

.quiz-lb-status--err {
  color: #fca5a5;
}
