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

header {
  padding: 20px;
  border-bottom: 1px solid #00ff00;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

nav a {
  color: #00ff00;
  margin-left: 20px;
  text-decoration: none;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  opacity: 0.7;
}

.button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  border: 1px solid #00ff00;
  color: #00ff00;
  text-decoration: none;
  transition: 0.2s;
}

.button:hover {
  background: #00ff00;
  color: black;
}

footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #00ff00;
  font-size: 12px;
  opacity: 0.6;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0,255,0,0.03) 3px
  );
  pointer-events: none;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  border-top: 1px solid #00ff00;
}

.grid div {
  max-width: 250px;
}

.notice {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #00ff00;
  opacity: 0.7;
}

.v-section {
  padding: 60px 20px;
  border-top: 1px solid #00ff00;
}

#v-container {
  max-width: 800px;
  margin: auto;
}

/* more spacing so they don't overlap */
.v-card {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
}

/* square */
.square {
  width: 70px;
  height: 70px;
  animation: spin 5s linear infinite;
  flex-shrink: 0; /* prevents squishing */
}

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

/* text */
.info h3 {
  margin: 0;
}

.info p {
  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;
}