/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body with dark hacker theme */
body {
  background: #0a0a0a;
  color: #00ff00;
  font-family: 'VT323', monospace;
  font-size: 18px;
  overflow-x: hidden;
}

/* Canvas for background animation */
#background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Main container */
.container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #00ff00;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  border-radius: 5px;
}

/* Heading */
h1 {
  text-align: center;
  font-size: 36px;
  text-shadow: 0 0 10px #00ff00;
  margin-bottom: 10px;
}

/* Description */
.description {
  text-align: center;
  font-size: 16px;
  text-shadow: 0 0 5px #00ff00;
  margin-bottom: 20px;
}

/* Warning messages */
.warning {
  font-size: 14px;
  color: #00b7eb; /* Neon blue to match planet */
  text-shadow: 0 0 5px #00b7eb;
  margin: 10px 0;
}

/* Form group */
.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  text-shadow: 0 0 5px #00ff00;
}

/* Input and textarea styles */
.input-hacker {
  width: 100%;
  padding: 8px;
  background: #1a1a1a;
  border: 1px solid #00ff00;
  color: #00ff00;
  font-family: 'VT323', monospace;
  font-size: 16px;
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 255, 0, 0.3);
  transition: box-shadow 0.3s;
}

.input-hacker:focus {
  outline: none;
  box-shadow: 0 0 10px #00ff00;
}

/* Button styles */
.btn-hacker {
  padding: 10px 20px;
  background: #0a0a0a;
  border: 1px solid #00ff00;
  color: #00ff00;
  font-family: 'VT323', monospace;
  font-size: 18px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s;
  text-shadow: 0 0 5px #00ff00;
}

.btn-hacker:hover {
  background: #00ff00;
  color: #0a0a0a;
  box-shadow: 0 0 15px #00ff00;
}

/* Text output styles */
.text-hacker {
  font-size: 16px;
  line-height: 1.5;
  text-shadow: 0 0 5px #00ff00;
  margin: 10px 0;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #1a1a1a;
  padding: 20px;
  border: 2px solid #00ff00;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-shadow: 0 0 5px #00ff00;
}

.modal-content p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Load VT323 font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');