/* ===== 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 {
  all: unset;
  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;
}


#reportOverlay {
  all: unset;
  position: fixed !important;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2147483646;
}

#reportModal {
  all: unset;
  width: min(420px, 92vw);
  max-height: 85vh;
  background: linear-gradient(180deg, #0b0e14, #0e111b);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 40px 80px rgba(0,0,0,.65);
  font-family: 'Cairo', system-ui, sans-serif;
  color: #fff;
  display: block;
}


#reportOverlay,
#reportModal {
  transform: none !important;
  perspective: none !important;
  filter: none !important;
}


#reportModal input,
#reportModal textarea,
#reportModal button {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: inherit;
}


#sendReport {
  background: linear-gradient(135deg, #a020f0, #7b00d9);
  text-align: center;
  cursor: pointer;
  font-weight: 700;
}

#report-portal {
  all: unset;
  position: fixed;
  inset: 0;
  z-index: 2147483647;
}



#sendReport {
  background: linear-gradient(135deg, #b63cff, #8f1dff);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(160, 32, 240, 0.45);
}

#closeReport {
  background: #2a3042;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.4);
}



/* ===== Hover Effects ===== */
#sendReport:hover {
  background: linear-gradient(135deg, #b63cff, #8f1dff);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(160, 32, 240, 0.45);
}

#closeReport:hover {
  background: #2a3042;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.4);
}


