/* ══════════════════════════════════════
   SCREEN: SUCCESS
   ══════════════════════════════════════ */
#success {
  text-align: center;
}
.success-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-400), var(--secondary-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 64px auto 24px;
  box-shadow: 0 4px 20px var(--ring);
}
.dark .success-circle { box-shadow: 0 4px 20px var(--ring); }
.success-circle iconify-icon {
  font-size: 40px;
  color: #fff;
}
.success-h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.success-sub {
  color: var(--fg-muted);
  font-size: 15px;
  margin-bottom: 32px;
}
.vocab-table {
  max-width: 400px;
  margin: 0 auto 40px;
  text-align: left;
}
.vocab-table h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.vocab-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  transition: background 0.15s;
}
.vocab-row:nth-child(odd) { background: var(--bg-muted); }
.vocab-de {
  font-weight: 600;
  color: var(--fg);
}
.vocab-en {
  color: var(--fg-muted);
}
.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

