:root {
  --bg: #070c07;
  --s1: #0d140d;
  --s2: #111a11;
  --s3: #162016;
  --b1: #1a2a1a;
  --b2: #243624;
  --b3: #2e452e;
  --tx: #ddeedd;
  --mu: #527052;
  --fa: #2e422e;
  --pk: #ff2d78;
  --pk10: rgba(255, 45, 120, .10);
  --pk15: rgba(255, 45, 120, .15);
  --pk35: rgba(255, 45, 120, .35);
  --r: 6px;
  --nav: 70px;
  --fd: 'Playfair Display', serif;
  --fb: 'DM Sans', sans-serif;
  --fm: 'Space Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--tx);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
button {
  -webkit-user-select: text;
  user-select: text;
}

.pg {
  display: none !important;
}

.pg.on {
  display: block !important;
}

#pg-feed.on {
  display: flex !important;
  flex-direction: column;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav);
  background: var(--s1);
  border-bottom: 1px solid var(--b1);
  position: sticky;
  top: 0;
  z-index: 2000;
  padding: 0 2rem;
}

.nlogo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
}

.nlogo-t {
  font-family: var(--fd);
  font-size: 1.7rem;
  color: var(--pk);
  letter-spacing: .5px;
  line-height: 1;
  font-style: italic;
}

.nlogo-s {
  font-family: var(--fm);
  font-size: .44rem;
  color: var(--mu);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.ntabs {
  display: flex;
}

.ntab {
  padding: 0 1.25rem;
  height: var(--nav);
  display: flex;
  align-items: center;
  font-family: var(--fm);
  font-size: .65rem;
  letter-spacing: .8px;
  color: var(--mu);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  text-transform: uppercase;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.ntab:hover {
  color: var(--tx);
}

.ntab.on {
  color: var(--pk);
  border-bottom-color: var(--pk);
}

#pg-feed {
  height: calc(100vh - var(--nav));
}

.toolbar {
  padding: .5rem 1rem;
  background: var(--s1);
  border-bottom: 1px solid var(--b1);
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.fl {
  font-family: var(--fm);
  font-size: .58rem;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.fsel {
  background: var(--s2);
  border: 1px solid var(--b2);
  border-radius: var(--r);
  color: var(--tx);
  font-family: var(--fm);
  font-size: .66rem;
  padding: .28rem .6rem;
  cursor: pointer;
  outline: none;
  transition: border-color .15s;
  appearance: none;
}

.fsel:focus {
  border-color: var(--pk);
}

.fsel option {
  background: var(--bg);
}

.vtog {
  margin-left: auto;
  display: flex;
  border: 1px solid var(--b2);
  border-radius: var(--r);
  overflow: hidden;
}

.vbtn {
  padding: .28rem .75rem;
  font-family: var(--fm);
  font-size: .62rem;
  cursor: pointer;
  color: var(--mu);
  background: var(--s2);
  border: none;
  transition: background .15s, color .15s;
  text-transform: uppercase;
}

.vbtn.on {
  background: var(--pk);
  color: #fff;
}

.cnt {
  font-family: var(--fm);
  font-size: .65rem;
  color: var(--mu);
  white-space: nowrap;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.cnt b {
  color: var(--pk);
  font-style: normal;
}

.cnt span {
  color: var(--mu);
}

#map-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#map {
  flex: 1;
}

.leaflet-container {
  background: #e8e0d8;
}

.leaflet-tile {
  filter: saturate(.55) brightness(.92);
}

.leaflet-control-zoom a {
  background: var(--s1) !important;
  color: var(--tx) !important;
  border-color: var(--b2) !important;
}

.leaflet-popup-content-wrapper {
  background: var(--s1) !important;
  border: 1px solid var(--b2) !important;
  border-radius: var(--r) !important;
  padding: 0 !important;
  box-shadow: 0 0 0 1px var(--pk35), 0 14px 40px rgba(0, 0, 0, .85) !important;
  min-width: 215px;
}

.leaflet-popup-content {
  margin: 0 !important;
  width: auto !important;
}

.leaflet-popup-tip-container {
  display: none;
}

.leaflet-popup-close-button {
  color: var(--mu) !important;
  top: 7px !important;
  right: 9px !important;
  font-size: 16px !important;
  z-index: 10;
}

.dpin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--s1);
  border: 1.5px solid var(--pk35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 45, 120, .2);
  transition: transform .12s, border-color .12s, box-shadow .12s;
}

.dpin:hover {
  transform: scale(1.18);
  border-color: var(--pk);
  box-shadow: 0 0 16px rgba(255, 45, 120, .45);
}

.dpin svg {
  width: 13px;
  height: 13px;
  stroke: var(--tx);
  fill: none;
}

.pu-img {
  border-radius: var(--r) var(--r) 0 0;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--s3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pu-img svg {
  width: 22px;
  height: 22px;
  opacity: .15;
  stroke: var(--mu);
  fill: none;
}

.pu-body {
  padding: .65rem .85rem .75rem;
}

.pu-loc {
  font-family: var(--fd);
  font-size: 1rem;
  color: var(--tx);
  line-height: 1.2;
  margin-bottom: .1rem;
  letter-spacing: .5px;
}

.pu-area {
  font-family: var(--fm);
  font-size: .54rem;
  color: var(--pk);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .3rem;
}

.pu-cats {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  margin-top: .28rem;
}

.pu-cat {
  display: flex;
  align-items: center;
  gap: .2rem;
  border: 1px solid var(--b2);
  border-radius: 3px;
  padding: .1rem .35rem;
  font-family: var(--fm);
  font-size: .52rem;
  color: var(--mu);
  text-transform: uppercase;
}

.pu-cat svg {
  width: 8px;
  height: 8px;
  stroke: var(--mu);
  fill: none;
}

.pu-meta {
  display: flex;
  justify-content: space-between;
  margin-top: .4rem;
}

.pu-by {
  font-size: .64rem;
  color: var(--mu);
}

.pu-date {
  font-family: var(--fm);
  font-size: .52rem;
  color: var(--fa);
}

.pu-link {
  display: block;
  margin-top: .5rem;
  padding: .32rem;
  text-align: center;
  border: 1px solid var(--b2);
  border-radius: var(--r);
  font-family: var(--fm);
  font-size: .54rem;
  color: var(--mu);
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  background: none;
  width: 100%;
}

.pu-link:hover {
  border-color: var(--pk35);
  color: var(--pk);
}

#list-wrap {
  flex: 1;
  overflow: hidden;
  display: none;
  flex-direction: column;
}

#list-wrap.on {
  display: flex;
}

#list-wrap {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  flex-direction: column;
}

#list-wrap.on {
  display: flex;
}

.clist {
  padding: .8rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.clist-group {
  margin-bottom: 2.5rem;
}

.clist-heading {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .5rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--b1);
  position: relative;
}

.clist-heading-label {
  font-family: var(--fd);
  letter-spacing: 0;
  text-transform: none;
}

.clist-heading.today .clist-heading-label {
  font-size: 6.5rem;
  line-height: .95;
  color: var(--pk);
  text-shadow: 0 0 18px rgba(255, 45, 120, .2);
  font-style: italic;
}

.clist-heading.today {
  margin-bottom: 1.8rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--b1);
}

.clist-heading.yesterday .clist-heading-label {
  font-size: 5.6rem;
  line-height: 1;
  color: #ede8e0;
  font-style: italic;
}

.clist-heading.this-week .clist-heading-label {
  font-size: 3.2rem;
  line-height: 1;
  color: #c0cfc0;
  font-style: italic;
}

.clist-heading.older .clist-heading-label {
  font-size: 2rem;
  line-height: 1;
  color: var(--mu);
  font-style: italic;
}

.clist-heading-count {
  font-family: var(--fm);
  font-size: .54rem;
  color: var(--fa);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.clist-group:nth-child(even) .clist-heading {
  flex-direction: row-reverse;
}

.clist-group:nth-child(even) .clist-heading-count {
  text-align: right;
}

.clist-heading {
  margin-bottom: .75rem;
  padding-bottom: .5rem;
}

.lcard {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--b1);
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .85rem 0;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.22, .68, 0, 1.2);
  position: relative;
}

.lcard:last-child {
  border-bottom: none;
}

.lcard:hover {
  transform: translateX(8px);
}

.lcard:hover .lcard-meta {
  opacity: 1;
}

.lcard-loc-inner {
  position: relative;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lcard-loc-inner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--tx);
  transition: width .3s ease;
}

.lcard:hover .lcard-loc-inner::after {
  width: 100%;
}

.lcard-main {
  min-width: 0;
}

.lcard-loc {
  font-family: var(--fb);
  font-size: .95rem;
  color: #e8e2da;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: .12rem;
  text-transform: capitalize;
}

.lcard-area {
  font-family: var(--fm);
  font-size: .54rem;
  color: var(--pk);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .3rem;
  opacity: .85;
}

.lcard-chips {
  display: flex;
  gap: .2rem;
  flex-wrap: wrap;
}

.chip {
  display: flex;
  align-items: center;
  gap: .18rem;
  border: 1px solid var(--b3);
  border-radius: 3px;
  padding: .09rem .3rem;
  font-family: var(--fm);
  font-size: .5rem;
  color: #6e8e6e;
  text-transform: uppercase;
}

.chip svg {
  width: 7px;
  height: 7px;
  stroke: #6e8e6e;
  fill: none;
}

.lcard-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .22rem;
  flex-shrink: 0;
  padding-right: 1.5rem;
  opacity: .85;
  transition: opacity .2s;
}

.lcard-by {
  font-size: .72rem;
  color: #b8ccb8;
  white-space: nowrap;
  font-family: var(--fb);
}

.lcard-time {
  font-family: var(--fm);
  font-size: .6rem;
  color: #7a9a7a;
  white-space: nowrap;
}

.list-empty {
  text-align: center;
  padding: 3rem 1rem;
  font-family: var(--fm);
  font-size: .7rem;
  color: var(--fa);
}

#pg-detail {
  padding: 0;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--fm);
  font-size: .62rem;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
  transition: color .15s;
}

.back-btn:hover {
  color: var(--pk);
}

.back-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
}

.det-photos {
  display: grid;
  gap: 3px;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.det-photos.n1 {
  grid-template-columns: 1fr;
}

.det-photos.n2 {
  grid-template-columns: 1fr 1fr;
}

.det-photos.n3 {
  grid-template-columns: 1fr 1fr;
}

.det-photos.n3 .dp0 {
  grid-column: 1/3;
}

.det-photos.n4,
.det-photos.n5,
.det-photos.n6 {
  grid-template-columns: repeat(3, 1fr);
}

.det-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--s3);
}

.det-nophoto {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--s2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.det-nophoto svg {
  width: 44px;
  height: 44px;
  opacity: .1;
  stroke: var(--mu);
  fill: none;
}

.det-id-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--fm);
  font-size: .54rem;
  color: var(--fa);
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 3px;
  padding: .18rem .58rem;
  margin-bottom: .65rem;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.det-id-badge span {
  color: var(--mu);
}

.det-area {
  font-family: var(--fm);
  font-size: .65rem;
  color: var(--pk);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .3rem;
  opacity: .9;
}

.det-loc {
  font-family: var(--fb);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: #ede8e0;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: .3rem;
  letter-spacing: .1px;
}

.det-timestamp {
  font-family: var(--fm);
  font-size: .6rem;
  color: #6a8a6a;
  margin-bottom: 1.1rem;
  letter-spacing: .3px;
}

.det-sec {
  margin-bottom: .9rem;
}

.det-sec-label {
  font-family: var(--fm);
  font-size: .54rem;
  color: #6a8a6a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: .5rem;
}

.det-sec-label.sl-loc {
  color: #6a9a8a;
}

.det-sec-label.sl-site {
  color: #8a7a4a;
}

.det-sec-label.sl-sev {
  color: #8a5a6a;
}

.det-sec-label.sl-cat {
  color: #4a7a8a;
}

.fl-label.fl-site {
  color: #8a7a4a;
}

.fl-label.fl-sev {
  color: #8a5a6a;
}

.fl-label.fl-cat {
  color: #4a7a8a;
}

.det-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .36rem;
}

.det-cat {
  display: flex;
  align-items: center;
  gap: .32rem;
  border: 1px solid var(--b3);
  border-radius: var(--r);
  padding: .28rem .62rem;
  font-family: var(--fm);
  font-size: .6rem;
  color: #9ab89a;
  text-transform: uppercase;
  background: var(--s2);
}

.det-cat svg {
  width: 11px;
  height: 11px;
  stroke: #7a9a7a;
  fill: none;
}

.det-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}

.det-tag {
  border: 1px solid var(--b3);
  border-radius: 3px;
  padding: .22rem .58rem;
  font-family: var(--fm);
  font-size: .58rem;
  color: #9ab89a;
  text-transform: uppercase;
}

.det-notes {
  font-size: .88rem;
  color: #aabcaa;
  line-height: 1.7;
  background: var(--s2);
  border: 1px solid var(--b2);
  border-radius: var(--r);
  padding: .8rem 1rem;
}

.det-divider {
  height: 1px;
  background: var(--b1);
  margin: 1rem 0;
}

.det-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.det-reporter {
  font-size: .8rem;
  color: var(--tx);
}

.det-date {
  font-family: var(--fm);
  font-size: .58rem;
  color: var(--fa);
}

#det-mini-map {
  width: 100%;
  height: 210px;
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 1.2rem;
  border: 1px solid var(--b1);
}

#pg-report {
  padding: 2rem 3rem 5rem;
}

.rp-outer {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.det-outer {
  padding: 2.5rem 2.5rem 5rem;
}

.rp-head {
  margin-bottom: 2.5rem;
}

.rp-t {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  color: var(--pk);
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 45, 120, .22);
  font-style: italic;
  text-transform: none;
}

.rp-s {
  font-family: var(--fm);
  font-size: .58rem;
  color: var(--mu);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: .4rem;
  opacity: .7;
}

.rp-ctx {
  margin-top: .85rem;
  font-size: .86rem;
  color: #6a8a6a;
  line-height: 1.7;
  border-left: 2px solid var(--pk35);
  padding-left: .85rem;
  max-width: 580px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

@media(max-width:920px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media(max-width:780px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-full {
  grid-column: 1/-1;
}

.form-notes-row {
  grid-column: 1/-1;
  margin-top: 0;
}

@media(max-width:780px) {
  .form-full {
    grid-column: 1;
  }
}

.rp-divider {
  height: 1px;
  background: var(--b1);
  margin: 1.5rem 0;
}

.fl-label {
  font-family: var(--fm);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--mu);
  margin-bottom: .38rem;
  margin-top: 1.1rem;
  display: block;
}

.fl-label:first-child {
  margin-top: 0;
}

.req {
  color: var(--pk);
}

.opt {
  color: var(--fa);
  font-size: .54rem;
  margin-left: .3rem;
}

input[type="text"],
textarea {
  width: 100%;
  background: var(--s2);
  border: 1px solid var(--b2);
  border-radius: var(--r);
  color: var(--tx);
  font-family: var(--fb);
  font-size: .9rem;
  padding: .6rem .8rem;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

input[type="text"]:focus,
textarea:focus {
  border-color: var(--pk);
  box-shadow: 0 0 0 3px var(--pk15);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.r2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

@media(max-width:480px) {
  .r2 {
    grid-template-columns: 1fr;
  }
}

.loc-search-wrap {
  position: relative;
}

.loc-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  margin-top: .5rem;
  font-family: var(--fm);
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--mu);
  background: var(--s2);
  border: 1px solid var(--b2);
  border-radius: var(--r);
  padding: .3rem .72rem;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}

.loc-maps-btn:hover {
  border-color: var(--pk35);
  color: var(--pk);
}

.loc-maps-btn svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
}

.loc-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--s1);
  border: 1px solid var(--b2);
  border-radius: var(--r);
  max-height: 195px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .6);
}

.loc-results.open {
  display: block;
}

.loc-result-item {
  padding: .52rem .78rem;
  font-size: .82rem;
  color: var(--tx);
  cursor: pointer;
  border-bottom: 1px solid var(--b1);
  transition: background .1s;
}

.loc-result-item:last-child {
  border-bottom: none;
}

.loc-result-item:hover {
  background: var(--s2);
}

.loc-result-item small {
  display: block;
  font-family: var(--fm);
  font-size: .52rem;
  color: var(--mu);
  margin-top: .12rem;
}

.loc-searching {
  padding: .52rem .78rem;
  font-family: var(--fm);
  font-size: .58rem;
  color: var(--fa);
  text-transform: uppercase;
}

.trow {
  display: flex;
  flex-wrap: wrap;
  gap: .32rem;
  margin-top: .38rem;
}

.tag {
  padding: .25rem .65rem;
  border-radius: 3px;
  border: 1px solid var(--b1);
  font-size: .65rem;
  cursor: pointer;
  background: var(--s2);
  color: var(--mu);
  transition: border-color .12s, color .12s, background .12s;
  font-family: var(--fm);
}

.tag:hover {
  border-color: var(--b2);
  color: var(--tx);
}

.tag.on {
  background: var(--pk10);
  color: var(--pk);
  border-color: var(--pk35);
}

.cgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem;
  margin-top: .38rem;
}

@media(max-width:360px) {
  .cgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ccard {
  border: 1px solid var(--b1);
  border-radius: var(--r);
  padding: .62rem .35rem .52rem;
  text-align: center;
  cursor: pointer;
  background: var(--s2);
  transition: border-color .15s, background .15s;
}

.ccard:hover {
  border-color: var(--b2);
}

.ccard.on {
  background: var(--pk10);
  border-color: var(--pk35);
}

.ccard-ico {
  display: flex;
  justify-content: center;
  margin-bottom: .26rem;
}

.ccard-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--mu);
  fill: none;
}

.ccard.on .ccard-ico svg {
  stroke: var(--pk);
}

.ccard-lbl {
  font-family: var(--fm);
  font-size: .5rem;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: .35px;
  line-height: 1.3;
}

.ccard.on .ccard-lbl {
  color: var(--pk);
}

.uparea {
  border: 1.5px dashed var(--b2);
  border-radius: var(--r);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  background: var(--s2);
  position: relative;
}

.uparea:hover,
.uparea.drag {
  border-color: var(--pk35);
  background: #0c160c;
  box-shadow: 0 0 0 3px var(--pk10);
}

.uparea input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.uparea-ico {
  margin-bottom: .35rem;
  display: flex;
  justify-content: center;
}

.uparea-ico svg {
  width: 40px;
  height: 40px;
  opacity: .3;
  stroke: var(--mu);
  fill: none;
}

.uparea p {
  font-size: .95rem;
  color: #8aaa8a;
}

.uparea small {
  font-size: .68rem;
  color: var(--mu);
  opacity: .6;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .32rem;
  margin-top: .5rem;
}

@media(max-width:480px) {
  .pgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pitem {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--s3);
}

.pitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prm {
  position: absolute;
  top: 3px;
  right: 3px;
  background: rgba(0, 0, 0, .8);
  border: none;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  color: #fff;
  font-size: .58rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upcount {
  font-size: .58rem;
  color: var(--fa);
  margin-top: .28rem;
  text-align: right;
  font-family: var(--fm);
}

.sub-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  text-align: center;
}

.sub-btn {
  padding: .75rem 2.2rem;
  background: var(--pk);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-family: var(--fd);
  font-size: 1.5rem;
  letter-spacing: .5px;
  cursor: pointer;
  text-transform: none;
  font-style: italic;
  box-shadow: 0 0 18px rgba(255, 45, 120, .3);
  transition: box-shadow .15s, transform .1s;
  flex-shrink: 0;
}

.sub-btn:hover {
  box-shadow: 0 0 28px rgba(255, 45, 120, .52);
}

.sub-btn:active {
  transform: scale(.98);
}

.anon {
  font-size: .6rem;
  color: var(--mu);
  font-family: var(--fm);
  line-height: 1.6;
  opacity: .6;
  text-align: center;
}

@media(max-width:480px) {
  .sub-btn {
    width: 100%;
  }
}

.sub-btn {
  min-width: 220px;
}

.succ {
  display: none;
  text-align: center;
  padding: 5rem 1rem;
}

.succ.on {
  display: block;
}

.succ h2 {
  font-family: var(--fd);
  font-size: 2.8rem;
  color: var(--pk);
  margin-bottom: .5rem;
  letter-spacing: .5px;
  text-shadow: 0 0 24px rgba(255, 45, 120, .4);
  font-style: italic;
  text-transform: none;
}

.succ p {
  color: var(--mu);
  font-size: .86rem;
  line-height: 1.7;
}

.succ-id {
  font-family: var(--fm);
  font-size: .6rem;
  color: var(--fa);
  margin-top: .6rem;
}

.ragain {
  margin-top: 1.5rem;
  display: inline-block;
  padding: .5rem 1.4rem;
  border: 1px solid var(--b2);
  border-radius: var(--r);
  font-size: .7rem;
  color: var(--mu);
  cursor: pointer;
  background: none;
  font-family: var(--fm);
  transition: border-color .15s, color .15s;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ragain:hover {
  border-color: var(--pk35);
  color: var(--tx);
}

.toastify {
  font-family: var(--fm) !important;
  font-size: .7rem !important;
  border-radius: var(--r) !important;
}

#pin-confirm-map .leaflet-container {
  background: #0d140d;
}

#pin-confirm-map {
  cursor: crosshair;
}

#pin-digipin {
  font-family: var(--fm);
  font-size: .55rem;
  color: var(--mu);
  margin-top: .35rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}