body {
  background: #050505;
  color: #00ff00;
  font-family: "Courier New", monospace;
  margin: 0;
}

header {
  padding: 20px;
  border-bottom: 1px solid #00ff00;
}

.logo {
  font-size: 18px;
  letter-spacing: 2px;
}

.doc {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.meta {
  font-size: 12px;
  opacity: 0.6;
}

/* layout */
.v-entry {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.v-entry.left {
  flex-direction: row;
}

.v-entry.right {
  flex-direction: row-reverse;
}

.v-entry.right .text {
  text-align: right;
}

/* square */
.square {
  width: 60px;
  height: 60px;
  animation: spin 6s linear infinite;
}

/* text */
.text {
  max-width: 500px;
}

/* spin */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* logs */
.log {
  margin-top: 60px;
  border-top: 1px solid #00ff00;
  padding-top: 20px;
}

.footer-text {
  margin-top: 40px;
  opacity: 0.7;
  font-size: 13px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #00ff00;
  border-radius: 5px;
  box-shadow: 0 0 5px #00ff00;
}

::-webkit-scrollbar-thumb:hover {
  background: #00cc00;
}

/* === SCANLINES OVERLAY === */

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  pointer-events: none;

  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 0, 0.05),
    rgba(0, 255, 0, 0.05) 1px,
    transparent 1px,
    transparent 3px
  );

  z-index: 999;
}