
/* Perfective pairs ------------------------------------------------------ */

.verb-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 3rem 2rem 2.2rem;
  background: #09111b;
  border: 1px solid rgb(52 52 52 / 60%);
  border-radius: 18px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.verb-card:focus-visible { outline: 2px solid rgb(70, 164, 248); outline-offset: 4px; }

.verb-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray);
}

.verb-prompt {
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.3rem 0 0.2rem;
}

/* Under the answer, not the prompt: the meaning is the confirmation you have
   the right verb, so giving it away before the guess costs the exercise. */
.verb-gloss {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-gray);
  font-size: 1rem;
}

.verb-answer {
  min-height: 4.4rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.25s ease;
}

.verb-answer.hidden { opacity: 0.16; }

.verb-perfective {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 700;
  color: #7ec8f4;
  letter-spacing: -0.02em;
}

.verb-actions { display: flex; gap: 0.7rem; justify-content: center; margin-top: 1.5rem; }

.verb-hint {
  margin: 1.4rem 0 0;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.verb-btn {
  text-decoration: none;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.verb-btn:hover { border-color: rgba(70, 164, 248, 0.7); }
.verb-btn.primary { background: rgb(70, 164, 248); border-color: rgb(70, 164, 248); color: #000; font-weight: 600; }

.pair-table { width: 100%; border-collapse: collapse; margin-top: 0.8rem; }

.pair-table th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-gray);
  font-weight: 500;
  text-align: left;
  padding: 0.5rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pair-table td {
  padding: 0.5rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.98rem;
}

.pair-table tr:last-child td { border-bottom: none; }
.pair-table .perf { color: #7ec8f4; }
.pair-table .gloss { color: var(--text-gray); font-size: 0.88rem; }
