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

#gl-game {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  color: #fff;
}
.gl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: 'Silkscreen', monospace;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}
.gl-header strong { color: #fff; }
.gl-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}
.gl-progress-pip {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.gl-progress-pip.is-correct { background: #6bcf7a; }
.gl-progress-pip.is-wrong { background: #ff6b7a; }
.gl-progress-pip.is-current { background: rgba(255,255,255,0.5); }

.gl-card {
  position: relative;
  padding-bottom: 0.5rem;
}
.gl-topic {
  text-align: center;
  font-family: 'Silkscreen', monospace;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 1rem 0 0.4rem;
  text-transform: uppercase;
}
.gl-prompt {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.gl-statements {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.gl-stmt {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 3px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
  transition: background 0.12s, border-color 0.12s, transform 0.05s;
}
.gl-stmt:hover:not(:disabled) {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
}
.gl-stmt:active:not(:disabled) { transform: scale(0.99); }
.gl-stmt:disabled { cursor: default; }
.gl-stmt.is-revealed-truth { border-left-color: #6bcf7a; background: rgba(107,207,122,0.08); }
.gl-stmt.is-revealed-lie { border-left-color: #ff6b7a; background: rgba(255,107,122,0.12); }
.gl-stmt.is-faded { opacity: 0.5; }

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

.gl-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;
}
.gl-next-btn:hover { background: rgba(120,200,255,0.22); }

.gl-end { text-align: center; padding: 1rem; }
.gl-end-title {
  font-family: 'Silkscreen', monospace;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.gl-end-score {
  font-size: 3rem;
  font-family: 'Silkscreen', monospace;
  color: #ffd57a;
  margin: 0.5rem 0;
}
.gl-end-sub { color: rgba(255,255,255,0.65); margin-bottom: 1.2rem; }
.gl-end-grid {
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
  margin: 0.6rem 0 1rem;
}
.gl-end-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.gl-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;
}
.gl-end-btn:hover { background: rgba(255,255,255,0.12); }
.gl-end-btn.is-primary {
  background: rgba(120,200,255,0.15);
  border-color: rgba(120,200,255,0.45);
  color: #a8dcff;
}
.gl-citation {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  margin-top: 2rem;
}
