/* SBURB.PRIME Neocities Prototype — style.css */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #050608;
  color: #00ff99;
  font-family: "Courier New", monospace;
}

body {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.wrap {
  max-width: 960px;
  width: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
}

/* CRT scanline overlay */
.scanlines {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,255,153,0.05) 0px,
    rgba(0,255,153,0.05) 2px,
    transparent 2px,
    transparent 4px
  );
  mix-blend-mode: screen;
}

/* Boot text */
.boot {
  margin: 0 0 1rem;
  white-space: pre-wrap;
}

/* Section subtitle */
.subtitle {
  margin: 0 0 0.5rem;
}

/* Link list for sessions/constructs */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.link-list a {
  display: block;
  text-decoration: none;
  color: #00ffaa;
  padding: 0.15rem 0;
}

.link-list a:hover {
  text-decoration: underline;
}

/* Output panel */
#panel {
  border-top: 1px solid #00ff9966;
  padding-top: 1rem;
}

.panel-text {
  min-height: 8rem;
  white-space: pre-wrap;
}

/* Command line form */
#cmd-form {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

#cmd-form label {
  flex: 0 0 auto;
}

#cmd-input {
  flex: 1 1 auto;
  background: #020304;
  border: 1px solid #00ff9966;
  color: #00ff99;
  padding: 0.25rem 0.4rem;
  font-family: inherit;
}

#cmd-input:focus {
  outline: none;
  border-color: #00ffcc;
}

/* Footer note */
.footer-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #00ff9966;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .wrap {
    padding: 1rem;
  }
}