/* Neon terminal style for Silent Operations Console */
body {
  background: #000000;
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  color: #00ff00;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '0101 1010 0011 1100 0101 1010 0011 1100 1010 0011 1100 0101 1010';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: rgba(0, 255, 0, 0.15);
  font-size: 0.8rem;
  line-height: 1.5;
  animation: binary-rain 40s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes binary-rain {
  0% { transform: translateY(-100vh); }
  100% { transform: translateY(100vh); }
}

.nav-menu {
  text-align: center;
  padding: 1rem;
  background: #000000;
  border-bottom: 1px solid #00ff00;
  box-shadow: 0 0 10px #00ff00;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.nav-menu li {
  display: inline;
}

.nav-menu a {
  color: #00ff00;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

.nav-menu a:hover {
  color: #00ffaa;
  text-shadow: 0 0 8px #00ff00;
  animation: glitch 0.3s linear infinite;
}

@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); }
}

.welcome-terminal {
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
}

.operations-console {
  background-color: #000000;
  padding: 2rem;
  margin: 2rem auto;
  border: 2px solid #00ff00;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 0 15px #00ff00;
}

.operations-console h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px #00ff00;
}

.operations-console p {
  margin-bottom: 1.5rem;
}

.soc-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.soc-links li {
  margin-bottom: 1rem;
}

.operations-console a {
  display: block;
  color: #00ff00;
  text-decoration: none;
  padding: 8px;
  transition: all 0.2s ease-in-out;
}

.operations-console a:hover {
  color: #00ffaa;
  text-decoration: underline;
  text-shadow: 0 0 8px #00ff00;
  animation: glitch 0.3s linear infinite;
}

.status-indicator {
  font-size: 0.8rem;
  margin-left: 10px;
  cursor: help;
}

.operations-console .tor-note,
.operations-console .security-tips p {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  color: #aaaaaa;
  font-style: italic;
}

.operations-console .news-ticker p {
  font-size: 0.9rem;
  color: #00ff00;
  margin-top: 1rem;
  white-space: nowrap;
  overflow: hidden;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.terminal-prompt {
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
}

.terminal-prompt input {
  background: #000000;
  color: #00ff00;
  border: 1px solid #00ff00;
  border-radius: 5px;
  padding: 8px;
  font-family: 'Courier New', monospace;
  width: 100%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .nav-menu ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .operations-console {
    max-width: 90%;
    padding: 1.5rem;
  }

  .operations-console h2 {
    font-size: 1.4rem;
  }

  .operations-console a {
    font-size: 0.9rem;
  }

  .welcome-terminal pre {
    font-size: 0.9rem;
  }

  .terminal-prompt input {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .operations-console h2 {
    font-size: 1.2rem;
  }

  .operations-console a {
    font-size: 0.8rem;
  }

  .welcome-terminal pre {
    font-size: 0.8rem;
  }

  .terminal-prompt input {
    font-size: 0.8rem;
  }
}
