body.npp-app {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

/* =========================
   REGISTRATION
========================= */

.register-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
}

.register-logo {
    width: 180px;
    margin-bottom: 25px;
}

.register-title {
    color: #D4AF37;
    margin-bottom: 30px;
}

.membership-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.membership-card {
    background: #0f1115;
    border: 2px solid #333;
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.membership-card:hover {
    border-color: #00c853;
    box-shadow: 0 0 18px rgba(0,200,83,0.3);
}

.membership-card.selected {
    border-color: #D4AF37;
    box-shadow: 0 0 18px rgba(212,175,55,0.4);
}

.membership-card h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.details-section {
    margin-top: 30px;
    display: none;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.details-section.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#registerForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#registerForm input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
}

.privacy-box {
    margin-top: 20px;
    text-align: left;
}

.privacy-text {
    font-size: 13px;
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 10px;
}

.privacy-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.register-btn {
    margin-top: 20px;
    padding: 14px;
    background: #D4AF37;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.register-btn:hover {
    background: #c49b2f;
}

/* =========================
   REPORT PAGE ENHANCEMENTS
========================= */

.reg-form input[type="text"],
.reg-form textarea,
.reg-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 0.9rem;
}

.reg-form input[type="file"] {
    background: #151515;
    padding: 8px;
}

.reg-form label {
    display: block;
    font-size: 0.85rem;
    margin-top: 6px;
    color: #ccc;
}

.reg-form small {
    display: block;
    font-size: 0.75rem;
    color: #777;
    margin-top: -8px;
    margin-bottom: 10px;
}

/* Highlight Operator field */
#operator {
    border: 1px solid #D4AF37;
}

/* Status message */
#report_msg {
    font-size: 0.9rem;
    margin-top: 15px;
    min-height: 20px;
}

/* =========================
   MAP FIX
========================= */

#nppMap {
  cursor: crosshair !important;
  z-index: 1;
}

.portal-container {
  overflow: visible;
}
/* Password Lock Overlay */
.lock-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  backdrop-filter:blur(6px);
  z-index:9998;
  display:none;
}
.lock-active{
  pointer-events:none;
  filter:blur(4px);
  opacity:0.5;
}

/* LEGAL MODAL PREMIUM */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.legal-modal {
  background: #0f1115;
  width: 90%;
  max-width: 800px;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #222;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.legal-modal h2 {
  color: #D4AF37;
  margin-bottom: 20px;
  text-align: center;
}

.legal-modal h3 {
  margin-top: 25px;
  color: #D4AF37;
  font-size: 16px;
}

.legal-scroll {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

.legal-scroll ul {
  padding-left: 18px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}