/* Quote-Unquote game styles */
.qu-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1;
  margin: 1.5rem 0 0.2rem;
  letter-spacing: -0.01em;
}
.qu-sub {
  text-align: center;
  color: rgba(255,255,255,0.65);
  margin: 0.2rem 0 1.5rem;
}

.qu-page-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin: 1rem 0 0.25rem;
  letter-spacing: -0.01em;
}

#qu-game {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  color: #fff;
}

.qu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Silkscreen', monospace;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.qu-header strong { color: #fff; }

.qu-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.qu-progress-pip {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.qu-progress-pip.is-correct { background: #6bcf7a; }
.qu-progress-pip.is-wrong   { background: #ff6b7a; }
.qu-progress-pip.is-current { background: rgba(255,255,255,0.5); }

.qu-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  margin: 1.5rem auto;
  max-width: 540px;
  padding: 0 1rem;
}

.qu-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.qu-option {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background 0.12s;
}
.qu-option:hover:not(:disabled) { background: rgba(255,255,255,0.1); }
.qu-option:disabled { cursor: default; }
.qu-option.is-correct { background: rgba(107,207,122,0.18); border-color: #6bcf7a; }
.qu-option.is-wrong   { background: rgba(255,107,122,0.18); border-color: #ff6b7a; }
.qu-option.is-faded   { opacity: 0.5; }

.qu-feedback {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  font-size: 0.9rem;
}
.qu-feedback-result {
  font-family: 'Silkscreen', monospace;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.qu-feedback-result.is-correct { color: #6bcf7a; }
.qu-feedback-result.is-wrong   { color: #ff6b7a; }
.qu-feedback-context { color: rgba(255,255,255,0.7); margin-top: 0.3rem; font-size: 0.85rem; }
.qu-feedback-source  { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 0.5rem; }
.qu-feedback-source a { color: #a8dcff; text-decoration: none; }
.qu-feedback-source a:hover { text-decoration: underline; }

.qu-next-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.9rem;
  background: rgba(120,200,255,0.15);
  border: 1px solid rgba(120,200,255,0.45);
  color: #a8dcff;
  font-family: 'Silkscreen', monospace;
  letter-spacing: 0.08em;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
}

.qu-end { text-align: center; padding: 1rem; }
.qu-end-title { font-family: 'Silkscreen', monospace; font-size: 1.4rem; letter-spacing: 0.1em; }
.qu-end-score { font-size: 3rem; font-family: 'Silkscreen', monospace; color: #ffd57a; margin: 0.5rem 0; }
.qu-end-grid  { font-size: 1.4rem; letter-spacing: 0.15rem; margin: 0.6rem 0 1rem; }
.qu-end-actions { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.qu-end-btn {
  padding: 0.7rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Silkscreen', monospace;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  text-decoration: none;
}
.qu-end-btn.is-primary { background: rgba(120,200,255,0.15); border-color: rgba(120,200,255,0.45); color: #a8dcff; }
