*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #0a0a0a;
}

body {
  /* Keep the grid and colors */
  background-image:
          linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  color: #00ff41;
  font-family: 'Courier New', Courier, monospace;

  /* REMOVE flex centering from here */
  display: block;
  overflow-x: hidden;
  padding: 40px 0; /* Adds breathing room at top and bottom */
}

/* The scanning line effect */
.scan-line {
  width: 100%;
  height: 4px;
  background: rgba(0, 255, 65, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
  animation: moveScan 6s linear infinite;
}

@keyframes moveScan {
  0% { transform: translateY(-10px); }
  100% { transform: translateY(100vh); }
}

.container {
  max-width: 850px;
  width: 90%;
  padding: 50px;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid #00ff41;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
  position: relative;
  z-index: 10;

  /* ADD this to center the box horizontally without breaking the top */
  margin: 0 auto;
}

.container::before {
  content: "[ PROTOCOL:ZERO ]";
  position: absolute;
  top: -12px;
  left: 25px;
  background: #0a0a0a;
  padding: 0 10px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: bold;
}

header {
  border-bottom: 1px solid #00ff41;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

.warning-box {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid #ff4444;
  padding: 15px;
  margin: 25px 0;
  color: #ff4444;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.information-box {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid darkgoldenrod;
  padding: 15px;
  margin: 25px 0;
  color: yellow;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.card {
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.card:hover {
  border-color: #00ff41;
  background: rgba(0, 255, 65, 0.05);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

.card h3 {
  margin-top: 0;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #00ff41;
  color: #00ff41;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #00ff41;
  color: #0a0a0a;
  box-shadow: 0 0 15px #00ff41;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 255, 65, 0.2);
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.7;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 8px;
}

ul li::before {
  content: "> ";
}

.force-wrap {
  /* Essential for long unbroken strings */
  word-break: break-all;     /* Standard: breaks at any character */
  overflow-wrap: anywhere;   /* Modern: ensures it stays in the box */
  white-space: normal;       /* Ensures browser doesn't try to keep it on one line */
  display: block;            /* Ensures it fills the width of the parent box */
}