.report-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
}

.report-modal.hidden {
  display: none;
}

.report-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.288);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 200ms ease;
}

.report-modal__wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.report-modal__panel {
  width: 100%;
  max-width: 580px;
  background: #fff;
  color: #0f172a;
  border-radius: 28px 28px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition: all 220ms ease;
  overflow: hidden;
}

.report-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.report-modal__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e11d48;
}

.report-modal__header h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.report-modal__subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  color: #64748b;
}

.report-modal__close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: #f1f5f9;
  color: #0f172a;
  cursor: pointer;
}

.report-modal__body {
  padding: 22px;
  max-height: 82vh;
  overflow-y: auto;
}

.report-modal__card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 16px;
}

.report-modal__avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  background: #e2e8f0;
  flex: 0 0 auto;
}

.report-modal__label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 3px;
}

.report-modal__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.report-modal__id {
  margin-top: 3px;
  font-size: 13px;
  color: #64748b;
  word-break: break-word;
}

.report-modal__section {
  margin-top: 20px;
}

.report-modal__section-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.report-modal__reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.report-reason-chip {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: 180ms ease;
}

.report-reason-chip:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.report-reason-chip.is-active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.report-modal__textarea {
  width: 100%;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 14px 16px;
  outline: none;
  resize: none;
  font: inherit;
}

.report-modal__textarea:focus {
  border-color: #cbd5e1;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.06);
}

.report-modal__gate {
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid #fde68a;
  background: #fffbeb;
  padding: 16px;
  color: #92400e;
}

.report-modal__gate p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #b45309;
}

.report-modal__login-btn {
  margin-top: 12px;
  height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.report-modal__status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
}

.report-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 22px;
  padding-top: 18px;
}

.report-modal__secondary-btn,
.report-modal__primary-btn {
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.report-modal__secondary-btn {
  background: #f1f5f9;
  color: #0f172a;
}

.report-modal__primary-btn {
  background: #0f172a;
  color: #fff;
}

.no-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.no-scrollbar {
  scrollbar-width: none;
}

@media (max-width: 640px) {
  .report-modal__panel {
    border-radius: 24px 24px 0 0;
  }

  .report-modal__reasons {
    grid-template-columns: 1fr;
  }

  .report-modal__actions {
    flex-direction: column-reverse;
  }

  .report-modal__secondary-btn,
  .report-modal__primary-btn,
  .report-modal__login-btn {
    width: 100%;
  }
}