/* =========================================================
   INTERWEB NEON PROTOCOL – Most Wanted Dossier
   Custom styles (Tailwind + Font Awesome loaded via CDN)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700&display=swap');

:root {
  --neon-cyan:   #00f0ff;
  --neon-pink:   #ff00cc;
  --neon-purple: #9d4edd;
  --bg-dark:     #050508;
  --card-bg:     rgba(10, 10, 18, 0.92);
}

body {
  font-family: 'Share Tech Mono', monospace;
}

/* ---------- Typography ---------- */

.orbitron {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 4px;
}

.neon-text {
  color: #e0f0ff;
  text-shadow:
    0 0 5px  #00f0ff,
    0 0 10px #00f0ff,
    0 0 20px #00f0ff;
}

.neon-pink {
  color: #ff00cc;
  text-shadow:
    0 0 5px  #ff00cc,
    0 0 10px #ff00cc;
}

.section-header {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 6px;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, #00f0ff, transparent);
}

/* ---------- Background ---------- */

.cyber-bg {
  background: #050508;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ---------- Borders & Cards ---------- */

.neon-border {
  border: 1px solid #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
}

.neon-border:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
  border-color: #ff00cc;
}

.cyber-card {
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid #00f0ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cyber-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.35);
}

.id-card {
  background: linear-gradient(145deg, #0f101a 0%, #08080f 100%);
  border: 1px solid #00f0ff;
  box-shadow:
    0 0 40px rgba(0, 240, 255, 0.25),
    inset 0 0 60px rgba(0, 240, 255, 0.06);
}

.contact-card {
  transition: all 0.2s ease;
}

.contact-card:hover {
  border-color: #ff00cc;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.2);
}

/* ---------- Effects ---------- */

.glitch {
  position: relative;
  animation: glitch-skew 2s infinite linear alternate-reverse;
}

.scanline {
  position: relative;
}

.scanline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 240, 255, 0.035) 51%
  );
  background-size: 100% 7px;
  pointer-events: none;
  animation: scan 3.5s linear infinite;
}

@keyframes scan {
  0%   { background-position: 0 0; }
  100% { background-position: 0 220px; }
}

.holo-text {
  position: relative;
}

.holo-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: #00f0ff;
  opacity: 0.15;
  transform: translateX(1.5px) translateY(-1px);
  pointer-events: none;
}

/* ---------- Terminal ---------- */

.terminal {
  background: #0a0a12;
  border: 1px solid #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  font-family: 'Share Tech Mono', monospace;
}

/* ---------- Buttons ---------- */

.neon-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #00f0ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
}

.neon-btn:hover {
  background: #00f0ff;
  color: #050508;
  box-shadow: 0 0 25px #00f0ff;
  border-color: #ff00cc;
}

.neon-btn-pink {
  border-color: #ff00cc;
  color: #ff00cc;
}

.neon-btn-pink:hover {
  background: #ff00cc;
  color: #050508;
  box-shadow: 0 0 25px #ff00cc;
}

/* ---------- Status & Threat ---------- */

.wanted-stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  transform: rotate(8deg);
  border: 3px solid #ff3366;
  color: #ff3366;
  padding: 1px 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  box-shadow: 0 0 12px #ff3366;
  z-index: 10;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f0ff;
  box-shadow: 0 0 8px #00f0ff;
  animation: pulse 2s infinite;
}

.status-dot.danger {
  background: #ff3366;
  box-shadow: 0 0 8px #ff3366;
  animation: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.threat-bar {
  height: 9px;
  background: #0a0a12;
  border: 1px solid #00f0ff;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.threat-fill {
  height: 100%;
  background: linear-gradient(to right, #00f0ff, #ff00cc);
  box-shadow: 0 0 12px #ff00cc;
  transition: width 1.2s cubic-bezier(0.23, 1.0, 0.32, 1);
}

/* ---------- Data fields ---------- */

.data-field {
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  padding-bottom: 6px;
}

/* ---------- Modal ---------- */

.modal {
  animation: modal-pop 0.25s ease forwards;
}

@keyframes modal-pop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Optional: nicer scrollbar inside modals */
.custom-scroll::-webkit-scrollbar {
  width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.35);
  border-radius: 3px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 240, 255, 0.6);
}
