.screen--tv {
  flex-direction: column;
  gap: 28px;
}

.tv {
  position: relative;
  width: min(85vw, 700px);
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #3a2a1c, #1a1109);
  border: 10px solid #0d0d0d;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.8);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.tv__screen {
  position: relative;
  flex: 1;
  height: 100%;
  background: #000;
  border-radius: 30% / 10%;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.tv__knobs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 4px;
}

.tv__knob {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #6b6b6b, #1a1a1a 70%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), inset 0 0 3px rgba(255, 255, 255, 0.3);
}

.tv__knob--small {
  width: 16px;
  height: 16px;
}

.tv__pause {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(20, 0, 0, 0.6);
  border: 2px solid #8b0000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-size: 0.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tv__pause:hover {
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}

.tv__pause:active {
  transform: scale(0.9);
}

#static-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#static-canvas.static-on {
  opacity: 1;
}

.tv__carousel {
  position: absolute;
  inset: 0;
  transform: scaleY(1);
  transform-origin: center;
}

.tv__carousel.tv__carousel--collapsing {
  animation: tv-channel-collapse 350ms ease-in-out;
}

@keyframes tv-channel-collapse {
  0% { transform: scaleY(1); }
  50% { transform: scaleY(0.01); }
  100% { transform: scaleY(1); }
}

.tv__carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.tv__carousel img.visible {
  opacity: 1;
}

.tv__dedication {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 6%;
  margin: 0;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #e8ecf5;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.tv__dedication.visible {
  opacity: 1;
}

.tv__power {
  position: absolute;
  bottom: -34px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 0, 0, 0.6);
  border: 2px solid #8b0000;
  box-shadow: 0 0 12px rgba(139, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tv__power:hover {
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.tv__power:active {
  transform: scale(0.9);
}

.tv__power:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.tv__power-hint {
  position: absolute;
  bottom: -60px;
  right: 4px;
  margin: 0;
  color: #ff6b6b;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  animation: tv-power-hint-bounce 1s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

.tv__power-hint.hidden {
  display: none;
}

@keyframes tv-power-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.tv-question {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.4rem;
  color: #d6d6d6;
  text-shadow: 0 0 8px rgba(200, 0, 0, 0.8);
  animation: tv-blink 1s steps(1) infinite;
}

@keyframes tv-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
