body {
  margin: 0;
  background: #02040c;
  color: #39ff14;
  font-family: "Courier New", monospace;
  text-shadow: 0 0 6px #1cff00;
}

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  z-index: 999;
}

.site-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid #1e5bff;
}

h1 {
  margin: 0;
  color: #3b7cff;
  font-size: 56px;
  letter-spacing: 2px;
  text-shadow: 0 0 12px #145cff;
}

h2 {
  color: #3b7cff;
  font-size: 16px;
  margin-top: 0;
}

a {
  color: #4d8dff;
}

a:hover {
  color: #39ff14;
}

.status-box,
.panel {
  border: 1px solid #1e5bff;
  background: rgba(2, 8, 24, 0.88);
  box-shadow: 0 0 18px rgba(30, 91, 255, 0.25);
}

.status-box {
  padding: 14px;
  min-width: 280px;
}

.layout {
  display: grid;
  grid-template-columns: 230px 1fr 260px;
  gap: 20px;
  padding: 20px;
}

.panel {
  padding: 18px;
  margin-bottom: 20px;
}

.nav a {
  display: block;
  margin: 14px 0;
  font-weight: bold;
}

.hero pre {
  color: #21d4fd;
  text-shadow: 0 0 8px #21d4fd;
  overflow-x: auto;
}

button {
  background: #02040c;
  color: #39ff14;
  border: 1px solid #39ff14;
  padding: 12px 18px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

button:hover {
  background: #39ff14;
  color: #02040c;
}

.counter {
  font-size: 34px;
  background: #000;
  border: 1px solid #39ff14;
  padding: 8px;
  display: inline-block;
  letter-spacing: 4px;
}

.fake-ad {
  color: #fff;
  background: linear-gradient(90deg, #1e5bff, #ff00cc);
  border: 1px solid #fff;
  padding: 10px;
  margin: 12px 0;
  text-shadow: none;
  font-weight: bold;
  text-align: center;
}

.construction {
  color: #ffd000;
  text-shadow: 0 0 8px #ffd000;
  border-color: #ffd000;
}

footer {
  padding: 18px;
  border-top: 1px solid #1e5bff;
  color: #4d8dff;
  text-align: center;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }
}
