.section {
  /* ...existing code... */
  transition: transform 0.2s cubic-bezier(.77,0,.18,1), box-shadow 0.2s;
}
.section:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 64px #00ff00cc;
  z-index: 2;
}
/* Custom larger pointer */
body {
  cursor: pointer;
}

/* Minnal CMD theme - solid colors (no gradients) */
body {
  margin: 0;
  background: #000 !important;
  color: #d0f0d0;
  font-family: 'Fira Mono', Consolas, 'Courier New', monospace;
  overflow-x: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 16px 80px 16px;
  max-width: 800px;
  background: transparent;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  color: #00ff00;
  margin-bottom: 8px;
  font-size: 2.2rem;
}

.links { color: #8bbf8b; margin-bottom: 16px; }
.links a { color: #d0f0d0; text-decoration: none; font-weight: 500; }
.links a:hover { color: #00ff00; }
.links .sep { color: #2a2a2a; margin: 0 8px; }

.section {
  background: #000;
  border-radius: 12px;
  box-shadow: 0 8px 32px #00ff0066;
  padding: 40px 5vw;
  margin-top: 32px;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.section h1, .section h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #00ff00;
}
.section ul {
  margin: 18px 0 18px 32px;
}
.section li {
  margin: 6px 0;
}
.section p {
  margin: 18px 0;
  color: #8bbf8b;
  font-size: 1.1rem;
}
.form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.form label {
  display: grid;
  gap: 6px;
  color: #00ff00;
  font-weight: 500;
  text-transform: capitalize;
}
.form input,
.form textarea {
  background: #222;
  color: #d0f0d0;
  border: 1px solid #00ff00;
  padding: 10px;
  font-family: inherit;
  border-radius: 6px;
}
.form input:focus,
.form textarea:focus { outline: 1px solid #00ff00; }
.form button {
  width: max-content;
  background: #00ff00; color: #000;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px #00ff0022;
  transition: all 0.3s ease;
}
.form button:hover { background: #009900; color: #fff; }

/* Popup styles */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #00ff00;
  border-radius: 12px;
  padding: 0;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}
.popup.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.popup-content {
  padding: 30px 40px;
  text-align: center;
  color: #00ff00;
}
.popup-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: bounce 0.6s ease;
}
.popup-text {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Fira Mono', monospace;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.footer {
  margin-top: 36px;
  color: #00ff00;
  text-align: center;
}
