/* SHARED UI */
.badge,
.section-kicker,
.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge,
.section-kicker {
  background: linear-gradient(90deg, rgba(255, 79, 216, 0.16), rgba(92, 225, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.news-tag {
  padding: 7px 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, rgba(255, 79, 216, 0.18), rgba(77, 163, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-btn,
.secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  border: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.primary-btn::before,
.secondary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 34%, transparent 58%);
  transform: translateX(-140%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.primary-btn:hover::before,
.secondary-btn:hover::before {
  transform: translateX(140%);
}

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  box-shadow:
    0 14px 32px rgba(139, 93, 255, 0.28),
    0 0 24px rgba(255, 79, 216, 0.16);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(139, 93, 255, 0.34),
    0 0 28px rgba(255, 79, 216, 0.22);
}

.secondary-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.secondary-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.full-width {
  width: 100%;
}

.label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.alert {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 600;
}

.alert-success {
  background: rgba(58, 201, 127, 0.12);
  border-color: rgba(58, 201, 127, 0.28);
  color: #d7ffe8;
}

.alert-error {
  background: rgba(255, 79, 79, 0.12);
  border-color: rgba(255, 79, 79, 0.28);
  color: #ffd9d9;
}

.form-error-list {
  margin: 0;
  padding-left: 18px;
}

.form-error-list li + li {
  margin-top: 6px;
}

.empty-state {
  margin-top: 12px;
  padding: 28px 24px;
  border-radius: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.empty-state h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 28px);
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}