
body {
  margin: 0;
  background: #000;
  color: #00ff00;
  font-family: 'Fira Code', monospace;
  overflow: hidden;
}

.crt-frame {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #0f0f0f;
  border-radius: 40px;
  box-shadow: 0 0 60px rgba(0, 255, 0, 0.3);
  overflow: hidden;
}

.crt-screen {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.crt-terminal p {
  margin: 0;
  white-space: pre;
  font-size: 1.2rem;
}

.brand {
  color: #00ffaa;
}

.crt-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0,255,0,0.05) 0 2px, transparent 2px 4px);
  animation: flicker 0.2s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.crt-channels {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.crt-channels button {
  background: none;
  border: 1px solid #00ff00;
  color: #00ff00;
  font-family: inherit;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
}

.crt-channels button:hover {
  background: #00ff00;
  color: #000;
}
