/* ------------- RESET & IMPORT ------------- */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ------------- BASE STYLE ------------- */
body {
  font-family: 'VT323', monospace;
  font-size: 20px;
  background-color: #000;
  color: #33ff33;
  line-height: 1.6;
  cursor: crosshair;
}

/* ------------- LAYOUT CONTAINER ------------- */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ------------- HEADINGS ------------- */
h1, h2, h3 {
  color: #00ff00;
  margin-bottom: 1rem;
  text-transform: lowercase;
}

/* ------------- PARAGRAPH AND LIST SPACING ------------- */
p, ul, ol, li, b, pre {
  margin-bottom: 1rem;
}

/* ------------- LINKS ------------- */
a {
  color: #00ffff;
  text-decoration: none;
}

a:hover {
  color: #ff00ff;
  text-decoration: underline;
}

/* ------------- ASCII ART ------------- */
.ascii-art {
  overflow-x: auto;
  margin-bottom: 2rem;
}

/* ------------- TERMINAL BOX ------------- */
.terminal-box {
  background-color: #111;
  border: 1px solid #0f0;
  padding: 1rem;
  margin: 1.5rem 0;
  font-family: monospace;
  white-space: pre-wrap;
}

/* ------------- BLINKING CURSOR EFFECT ------------- */
.blink::after {
  content: "▌";
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ------------- FOOTER ------------- */
footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px dashed #0f0;
  padding-top: 1rem;
  text-align: center;
}

/* ------------- CRT SCANLINES ------------- */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 1px,
    transparent 3px
  );
  z-index: 0;
}

/* ------------- ASCII DIVIDERS ------------- */
.divider {
  margin: 2rem 0;
  text-align: center;
  color: #0f0;
}

.divider::before {
  content: "· · ─==────==── ·𖥸· ──==───==── · ·";
  display: block;
  font-size: 18px;
}






/* ------------- RETRO BUTTON ------------- */
.button {
  display: inline-block;
  border: 1px solid #00ff00;
  background-color: #111;
  color: #33ff33;
  font-family: 'VT323', monospace;
  padding: 0.4rem 1rem;
  text-decoration: none;
  font-size: 18px;
  margin: 0.5rem 0;
  transition: background 0.3s, color 0.3s;
}

.button:hover {
  background-color: #00ff00;
  color: #000;
}

/* ------------- RESPONSIVE ------------- */
@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }
}

/* ----- NAVIGATION ----- */
.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

.navbar li {
  float: left;
}

.navbar li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar li a:hover {
  background-color: #111;
}



