/* Background canvas */
#hexbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* behind content */
  background: #0d0d0d;
}

/* Existing styles */
body {
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Courier New", monospace;
  color: #00ff88;
  overflow: hidden;
}

.terminal-box {
  background: rgba(17, 17, 17, 0.92);
  border: 2px solid #00ff88;
  border-radius: 10px;
  padding: 30px;
  max-width: 650px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,255,136,0.4);
  position: relative;
  z-index: 1;
}

.terminal-header {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.terminal-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.cursor {
  display: inline-block;
  width: 10px;
  background: #00ff88;
  margin-left: 3px;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { background: transparent; }
}

.btn-custom {
  background: #00ff88;
  color: #111;
  font-weight: bold;
  border: none;
}

.btn-custom:hover {
  background: #00cc6a;
}
