
/* Modern Retro Theme - Option 4 (Updated) */

body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background-color: #121212;
  color: #e6ffe6;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: 0;
}


.terminal-content {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.content-container {
  max-width: 800px;
  width: 100%;
}

.terminal-header {
  background-color: #1a1a1a;
  border-bottom: 2px solid #39ff14;
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2000;
}

.site-title {
  color: #39ff14;
  font-weight: bold;
  font-size: 1.5rem;
  margin-left: 1rem;
}

/* Always-visible Hamburger */
.menu-toggle {
  background: transparent;
  color: #39ff14;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
}



.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: #1a1a1a;
  transition: left 0.3s ease;
  padding: 1.5rem 1rem;
  z-index: 1500;
  overflow-y: auto;
  visibility: hidden;
}

.side-menu.open {
  left: 0;
  visibility: visible;
}


.close-menu {
  background: none;
  border: none;
  color: #39ff14;
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.side-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.side-menu nav a,
.side-menu nav button.logout-btn {
  color: #baffc9;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-family: inherit;
  text-decoration: none;
  width: 100%;
}

.side-menu nav a:hover,
.side-menu nav button.logout-btn:hover {
  background-color: #39ff14;
  color: #000;
}

button, .btn {
  background: transparent;
  border: 1px solid #39ff14;
  color: #39ff14;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-family: inherit;
  border-radius: 4px;
}

button:hover, .btn:hover {
  background-color: #39ff14;
  color: #000;
}

form {
  display: inline;
}

.terminal-footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 2px solid #39ff14;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #baffc9;
}

.terminal-footer a {
  margin: 0 0.75rem;
  color: #39ff14;
  text-decoration: none;
}

.terminal-footer a:hover {
  text-decoration: underline;
}

input, select, textarea {
  background-color: #000;
  color: #e6ffe6;
  border: 1px solid #39ff14;
  padding: 0.4rem;
  width: 100%;
  max-width: 100%;
}

input::placeholder {
  color: #66ff66;
}

.user-info {
  color: #39ff14;
  margin-bottom: 1rem;
  font-size: 1rem;
}