/* Vintage NASA/CRT frame (more orange) */
.crt {
  --crt-bg: #12100f;
  --crt-border: #3b2e22;
  --crt-glow: 0 0 20px rgba(255, 122, 0, .25), inset 0 0 28px rgba(255,122,0,.14);
  background: var(--crt-bg);
  border: 2px solid var(--crt-border);
  border-radius: 14px;
  padding: 12px 14px 16px;
  box-shadow: var(--crt-glow);
}

.crt .crt-title {
  font-family: "Orbitron", system-ui, sans-serif;
  letter-spacing: .03em;
  color: #ffcf9b;
  font-size: .98rem;
  margin: 0 0 10px;
  display: flex; align-items: center; gap: .5rem;
}

.crt .crt-screen {
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(255,140,0,.12) 0%, rgba(255,120,0,.08) 40%, rgba(0,0,0,.7) 100%),
    linear-gradient(0deg, rgba(255,140,0,.055) 0 1px, transparent 1px 3px) repeat; /* scanlines */
  background-size: 100% 100%, 100% 3px;
  border: 1px solid #473627;
  border-radius: 10px;
  height: 380px;
  overflow: hidden;
}

.crt .crt-caption {
  font-size: .82rem;
  color: #ffd7a8;
  opacity: .85;
  margin-top: .6rem;
}

@media (min-width: 900px) {
  .crt .crt-screen { height: 440px; }
}
