/* Base layout */
body {
  margin: 0;
  background: #000;
  font-family: 'Press Start 2P', monospace;
  color: #ff9900;
  overflow: hidden;
}

/* Main UI */
#main-ui {
  display: flex;
  height: 100vh;
  position: relative;
}

.sidebar {
  width: 150px;
  background: #111;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-right: 2px solid #ff9900;
  z-index: 2;
}

.sidebar a {
  color: #ff9900;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
}

.main-content {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  z-index: 2;
}

section {
  margin-bottom: 40px;
}

input, textarea, button {
  background: #000;
  color: #ff9900;
  border: 1px solid #ff9900;
  font-family: inherit;
  padding: 5px;
  width: 100%;
}

/* CRT scanlines */
.crt-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,153,0,0.03) 0px,
    rgba(0,0,0,0.05) 2px
  );
  z-index: 1;
}
