/* ===== Report Floating Button ===== */
#reportBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ff007a, #6200ea);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

#reportBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
}

/* ===== Overlay ===== */
#reportOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  z-index: 999998;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ===== Modal ===== */
#reportModal {
  width: min(420px, 92%);
  background: #0b0e14;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,.6);
  color: #fff;
  animation: pop .25s ease;
  font-family: 'Cairo', system-ui, sans-serif;
}

@keyframes pop {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

#reportModal h3 {
  margin: 0 0 14px;
  text-align: center;
  color: #f2d58b;
}

.report-group {
  margin-bottom: 12px;
}

.report-group label {
  font-size: 13px;
  opacity: .85;
}

.report-group input,
.report-group textarea {
  width: 100%;
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: #11131b;
  color: #fff;
  font-family: inherit;
}

.report-group textarea {
  resize: none;
  min-height: 90px;
}

#reportActions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

#reportActions button {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
}

#sendReport {
  background: linear-gradient(135deg, #9c16d1, #6b00b3);
  color: #fff;
}

#closeReport {
  background: #1b1f2c;
  color: #ccc;
}

/* ===== Toast ===== */
#reportToast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: #11131b;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s ease;
  z-index: 999999;
}

#reportToast.show {
  opacity: 1;
  transform: translateY(0);
}


#reportBtn {
  position: fixed !important;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff007a, #6200ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 2147483647;
}


