/* ===================================================
   REPORT MODAL
   =================================================== */

.report-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
}

.report-modal.active {
  display: flex;
}

.report-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.report-modal-box {
  position: relative;
  z-index: 10001;
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: #0d1a2a;
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  animation: slideUp 0.35s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(14,165,233,0.06);
  flex-shrink: 0;
}

.report-modal-header span {
  font-size: 14px;
  font-weight: 700;
  color: #7dd3fc;
}

.report-modal-close {
  background: none;
  border: none;
  font-size: 26px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-modal-close:hover { color: #f8fafc; }

.report-modal-body {
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(14,165,233,0.3) transparent;
}

.report-modal-body::-webkit-scrollbar { width: 6px; }
.report-modal-body::-webkit-scrollbar-track { background: transparent; }
.report-modal-body::-webkit-scrollbar-thumb { background: rgba(14,165,233,0.3); border-radius: 3px; }

.report-modal-body img {
  width: 100%;
  border-radius: 16px;
  display: block;
  border: 1px solid rgba(255,255,255,0.07);
}

.report-modal-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 24px;
  text-align: center;
  flex-shrink: 0;
  background: rgba(8,15,26,0.8);
}

.report-modal-footer p {
  font-size: 12px;
  color: #475569;
  margin-top: 10px;
  font-style: italic;
}

/* Legal Content Styles */
.legal-content {
  padding: 10px 20px 40px;
  color: #94a3b8;
  line-height: 1.6;
}

.legal-content h3 {
  color: #7dd3fc;
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.legal-content h4 {
  color: #e2e8f0;
  font-size: 1.1rem;
  margin-top: 16px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 14px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 14px;
}