#crt-monitor {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #d4c5a9;
  border-radius: 24px 24px 16px 16px;
  padding: 24px 24px 32px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3), 0 8px 32px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.crt-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.8);
}
.crt-screen::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.08) 0px,
    rgba(0,0,0,0.08) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 9999;
}
.crt-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 9998;
}
.crt-brand {
  font-family: var(--font-family);
  font-size: 11px;
  color: #8b7d6b;
  letter-spacing: 2px;
  margin-top: 6px;
  text-align: center;
}
.crt-led {
  position: absolute;
  bottom: 8px;
  right: 40px;
  width: 10px; height: 10px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff00;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.toast-container {
  position: fixed;
  bottom: 80px;
  right: 40px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toast {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-bright);
  animation: slideIn 0.3s ease;
  max-width: 320px;
}
.toast.info { border-left: 4px solid var(--highlight); }
.toast.warn { border-left: 4px solid var(--warning); }
.toast.error { border-left: 4px solid var(--danger); }
.toast.success { border-left: 4px solid var(--success); }
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
