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

body {
  font-family: 'VT323', 'Courier New', monospace;
  background-color: #000;
  color: #ffdd00;
  line-height: 1.8;
  padding: 20px;
  font-size: 14px;
  position: relative;
  letter-spacing: 1px;
}

.background-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #111;
  padding: 30px;
  border-radius: 0;
  border: 2px solid #ffdd00;
  box-shadow: 0 0 20px rgba(255, 221, 0, 0.5);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #ffdd00;
  font-family: 'Share Tech Mono', 'VT323', monospace;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-bottom: 1px solid #ffdd00;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 1.8em;
  word-spacing: 5px;
}

h2 {
  margin-bottom: 15px;
  color: #ffdd00;
  border-left: 3px solid #ffdd00;
  padding-left: 10px;
  text-transform: uppercase;
  font-size: 1.2em;
  font-family: 'Share Tech Mono', 'VT323', monospace;
  font-weight: bold;
  letter-spacing: 3px;
}

.form-container, .entries-container {
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ffdd00;
}

label::before {
  content: '> ';
  color: #ffdd00;
}

input, textarea {
  width: 100%;
  padding: 10px;
  background-color: #111;
  color: #ffdd00;
  border: 1px solid #ffdd00;
  border-radius: 0;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

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

button {
  background-color: #ffdd00;
  color: #000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  font-weight: bold;
}

button:hover {
  background-color: #fff;
  color: #000;
}

.entry {
  background-color: #111;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 2px solid #ffdd00;
  font-family: 'Courier New', monospace;
}

.entry::before {
  content: '[TRANSMISSION_START]';
  display: block;
  color: #ffdd00;
  margin-bottom: 5px;
  font-size: 0.8em;
}

.entry::after {
  content: '[TRANSMISSION_END]';
  display: block;
  color: #ffdd00;
  margin-top: 5px;
  font-size: 0.8em;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ffdd00;
  padding-bottom: 5px;
}

.entry-name {
  font-weight: bold;
  color: #ffdd00;
  font-size: 0.85em;
}

.entry-name::before {
  content: 'USER::';
  color: #ffdd00;
  margin-right: 5px;
}

.entry-date {
  color: #ffdd00;
  font-size: 0.85em;
}

.entry-date::before {
  content: 'TIMESTAMP::';
  color: #ffdd00;
  margin-right: 5px;
}

.entry-message {
  line-height: 1.5;
  color: #ffdd00;
  font-size: 0.9em;
}

.no-entries {
  color: #ffdd00;
  font-style: italic;
  border: 1px dashed #ffdd00;
  padding: 10px;
  text-align: center;
  font-size: 0.9em;
}

.protocol-container {
  margin-bottom: 40px;
  background-color: #111;
  padding: 20px;
  border: 1px solid #ffdd00;
  box-shadow: 0 0 15px rgba(255, 221, 0, 0.3);
  font-family: 'Courier New', monospace;
  color: #ffdd00;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  font-size: 0.9em;
}

.protocol-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffdd00, transparent);
  animation: scanline 2s linear infinite;
}

@keyframes scanline {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

.protocol-header {
  text-align: center;
  margin-bottom: 20px;
  color: #ffdd00;
  font-size: 0.95em;
}

.protocol-content h3 {
  color: #ffdd00;
  margin: 15px 0;
  letter-spacing: 2px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 1.1em;
}

.clearance {
  color: #ffdd00;
  margin-bottom: 20px;
  font-weight: bold;
}

.warning-section, .protocols-section, .phenomena-section, .log-section {
  margin-bottom: 20px;
}

.warning-section h4, .protocols-section h4, .phenomena-section h4, .log-section h4 {
  color: #ffdd00;
  margin-bottom: 5px;
  border-left: 3px solid #ffdd00;
  padding-left: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 0.95em;
}

.warning-content, .protocols-content, .phenomena-content {
  color: #ffdd00;
  margin-bottom: 5px;
}

.warning-message {
  color: #ffdd00;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 10px 0;
  font-size: 0.95em;
}

.protocol-content ol, .protocol-content ul {
  padding-left: 30px;
  margin: 10px 0;
}

.protocol-content li {
  margin-bottom: 5px;
  color: #ffdd00;
}

.log-content {
  font-style: italic;
  color: #ffdd00;
  padding: 10px;
  border-left: 2px solid #ffdd00;
  margin-top: 10px;
  background-color: #222;
  font-size: 0.85em;
}

.terminal-footer {
  color: #ffdd00;
  margin-top: 30px;
  text-align: center;
  font-size: 0.8em;
}

/* Company logo */
.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo-image {
  width: 80px;
  height: 80px;
  display: inline-block;
  margin-bottom: 10px;
}

.company-name {
  font-family: 'Share Tech Mono', 'VT323', monospace;
  font-size: 20px;
  font-weight: bold;
  color: #ffdd00;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 40px;
  text-shadow: 2px 2px 8px rgba(255, 221, 0, 0.5);
  font-style: italic;
  word-spacing: 4px;
}