.results {
  margin: 0 20px 30px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.reveal {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 12px 24px;
  min-height: 540px;
  justify-content: flex-start;
}

.reveal-question {
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  margin: 12px 0 10px;
  transition: transform 0.35s ease, margin 0.35s ease;
}

.reveal-question.center-start {
  margin: 0;
  transform: translateY(120px);
  font-size: 24px;
}

.reveal-question.stick-top {
  margin: 10px 0 10px;
  transform: translateY(0);
}

.reveal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 4px;
}

.reveal.question-only {
  justify-content: center;
}

.reveal-card {
  position: relative;
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
}

.reveal-card.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reveal-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 12px 14px;
  background: linear-gradient(180deg, rgba(3, 17, 31, 0) 0%, rgba(3, 17, 31, 0.8) 55%, rgba(3, 17, 31, 0.98) 100%);
  color: #f6f9ff;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(2px);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.reveal-card .points {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.reveal-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  color: #02111f;
  background: #d4af37;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.reveal-card:nth-child(2) .rank-badge { background: #c0c0c0; }
.reveal-card:nth-child(3) .rank-badge { background: #cd7f32; }
