/* Base Reset */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Stretch full height + black background */
html, body {
  height: 100%;
  background-color: #000;
}

body {
  color: #39ff14; /* neon green */
  font-family: "Trebuchet MS", sans-serif;
  text-align: center;
  padding: 40px 20px;
}

/* Fonts for Headings */
h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  color: #39ff14;
  margin-bottom: 10px;
}

p, a, li {
  font-family: "Trebuchet MS", sans-serif;
  line-height: 1.6;
  color: #39ff14;
}

a {
  color: #39ff14;
  text-decoration: none;
  border-bottom: 1px dashed #39ff14;
  transition: 0.2s ease-in-out;
}

a:hover {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

/* Container */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  min-height: 100vh;
}

/* Header */
header {
  margin-bottom: 40px;
}

.tagline {
  font-size: 1rem;
  color: #39ff14;
  margin-top: 5px;
  text-transform: lowercase;
  letter-spacing: 1px;
}

/* Navigation (Home Menu Style) */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.menu-list a {
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid #39ff14;
  border-radius: 8px;
  width: 60%;
  max-width: 300px;
}

.menu-list a:hover {
  background-color: #39ff14;
  color: #000;
  cursor: pointer;
}

/* ✅ Remove bullets from nav menu */
.main-menu ul {
  list-style-type: none;
  padding-left: 0;
}

/* Subpage Styles */
.subpage .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px; /* line break spacing between boxes */
}

/* Terminal Text Boxes */
.terminal-text {
  font-family: 'Courier New', Courier, monospace;
  text-align: left;
  white-space: pre-wrap;
  background-color: rgba(0, 0, 0, 0.75); /* transparent black */
  padding: 20px;
  border: 1px solid #39ff14;
  border-radius: 5px;
  color: #39ff14;
}

/* Go back link */
.back-link {
  margin-top: 30px;
  font-size: 0.9rem;
}

/* Clock styling */
#clock {
  position: fixed;
  bottom: 10px;
  left: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  color: #39ff14;
  background-color: transparent;
  z-index: 999;
}

/* Visitor Counter Fix */
#visitor-counter {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  color: #39ff14;
  z-index: 999;
}
#visitor-counter img {
  vertical-align: middle;
}

/* Optional mobile tweak */
@media (max-width: 600px) {
  .menu-list a {
    width: 90%;
  }
}
