/* ── Terms page ── */
.terms-page {
  background: #0d0d0d;
  min-height: 100vh;
  padding: calc(var(--header-h) + 60px) 20px 80px;
}

.terms-inner {
  max-width: 860px;
  margin: 0 auto;
}

.terms-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--purple);
}

.terms-list {
  list-style: none;
  counter-reset: terms-counter;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terms-list > li {
  counter-increment: terms-counter;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  padding: 18px 0 18px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.terms-list > li::before {
  content: counter(terms-counter) ".";
  position: absolute;
  left: 0;
  top: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.05em;
  min-width: 32px;
}

.terms-list a {
  color: var(--pink);
  text-decoration: none;
}
.terms-list a:hover {
  text-decoration: underline;
}

/* Sub-list (13a, 13b, 13c) */
.terms-sublist {
  list-style: lower-alpha;
  margin: 12px 0 4px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-sublist li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* Prohibited items block */
.terms-prohibited {
  margin-top: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--purple);
  border-radius: 0 4px 4px 0;
  font-size: 0.82rem;
  line-height: 2;
  color: rgba(255,255,255,0.65);
}
