/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0f;
  color: #e0e0ff;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(30, 50, 100, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(60, 30, 90, 0.15) 0%, transparent 30%);
}

/* WATERMARK */
.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 3rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: -1;
  white-space: nowrap;
  letter-spacing: 0.3em;
  text-shadow: 0 0 10px rgba(100, 150, 255, 0.3);
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  border-bottom: 1px solid #2c2c54;
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(8px);
}

.logo h1 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #a0d0ff;
  text-shadow: 0 0 10px rgba(100, 200, 255, 0.4);
}

.logo p {
  font-size: 0.9rem;
  color: #6080b0;
  margin-top: 0.3rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  color: #c0d0ff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(100, 200, 255, 0.6);
}

/* MAIN */
.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 5%;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero h2 {
  font-size: 2.5rem;
  color: #ff6060;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255, 100, 100, 0.5);
}

.tagline {
  font-size: 1.2rem;
  color: #a0c0e0;
  margin-bottom: 1.5rem;
}

.alert-banner {
  background: #400000;
  color: #ffaaaa;
  padding: 0.8rem;
  border-left: 4px solid #ff3030;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: bold;
}

/* SECTIONS */
.section {
  background: rgba(20, 25, 45, 0.5);
  border: 1px solid #304060;
  border-radius: 8px;
  padding: 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section h3 {
  color: #a0d0ff;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #406090;
  padding-bottom: 0.5rem;
}

.code-name {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: #80a0d0;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.status-active {
  color: #ff5050;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 80, 80, 0.5);
}

.note {
  font-size: 0.9rem;
  color: #aa80ff;
  margin-top: 1rem;
  font-style: italic;
}

.clearance-badge {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: #ffcc00;
  background: #332200;
  padding: 0.5rem;
  border: 1px dashed #aa8800;
  margin-top: 1.5rem;
  text-align: center;
}

/* HIGHLIGHTED SECTION (S.U.L.F.U.R.) */
.highlight {
  border-color: #803030;
  background: rgba(40, 15, 20, 0.4);
  position: relative;
  overflow: hidden;
}

.highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #ff3030;
}

/* GLITCH BUTTON */
.glitch-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: #500000;
  color: #ff8080;
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  border: 1px solid #a03030;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.glitch-button:hover {
  background: #700000;
  box-shadow: 0 0 15px rgba(255, 50, 50, 0.5);
}

.glitch-button.glitch-active {
  color: #ff0000;
  animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(2px, 2px); }
  100% { transform: translate(0); }
}

/* FORM */
.secure-form {
  margin-top: 1.2rem;
}

.secure-form input,
.secure-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  background: #151a2a;
  border: 1px solid #405070;
  color: #e0f0ff;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
}

.secure-form input::placeholder,
.secure-form textarea::placeholder {
  color: #7080a0;
}

.secure-form button {
  background: #004080;
  color: #a0d0ff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}

.secure-form button:hover {
  background: #0050a0;
  box-shadow: 0 0 10px rgba(100, 180, 255, 0.5);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #505070;
  border-top: 1px solid #2c2c54;
}

.footer p {
  margin: 0.3rem 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
  }
  .nav ul {
    gap: 1rem;
  }
  .hero h2 {
    font-size: 2rem;
  }
}
.terminal-access {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(30, 10, 30, 0.6);
  border: 1px solid #803080;
  border-radius: 8px;
}

.terminal-access input {
  width: 100%;
  padding: 0.7rem;
  margin: 0.5rem 0;
  background: #111;
  border: 1px solid #555;
  color: #f0f0ff;
  font-family: 'Courier New', monospace;
}

.terminal-access button {
  background: #500050;
  color: #ff80ff;
  border: none;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
}

.terminal-access button:hover {
  background: #700070;
  box-shadow: 0 0 10px rgba(255, 100, 255, 0.5);
}

.dossier-content {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(40, 10, 10, 0.3);
  border: 1px dashed #aa3030;
  border-radius: 6px;
  font-size: 0.95rem;
}

.evidence-image img {
  max-width: 100%;
  border: 1px solid #505070;
  margin: 1rem 0;
  box-shadow: 0 0 10px rgba(100, 100, 150, 0.3);
}