    @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

    body {
      margin: 0;
      background: transparent;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      font-family: 'Press Start 2P', system-ui;
      overflow: visible;
      image-rendering: pixelated;
      padding: 20px;
    }

    .tv-container {
      position: relative;
      width: 820px;
    }

    .tv {
      background: linear-gradient(#2c2c2c, #1a1a1a);
      padding: 35px 30px 60px;
      border-radius: 45px;
      box-shadow:
        0 0 80px rgba(0, 255, 180, 0.4),
        inset 0 0 60px rgba(0,0,0,0.95),
        0 30px 60px rgba(0,0,0,0.9);
      border: 12px solid #111;
    }

    .tv::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 13%;
      width: 80%;
      height: 38%;
      background: linear-gradient(180deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.01) 50%);
      border-radius: 50% 50% 40% 40%/60% 60% 40% 40%;
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 3;
    }

    .screen-frame {
      border: 14px solid #0a0a0a;
      border-radius: 8px;
      background: #000;
      overflow: hidden;
      position: relative;
    }

    .screen {
      aspect-ratio: 16 / 9;
      background: #000000;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      filter: brightness(1) contrast(1);
    }

    .crt-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: repeating-linear-gradient(
        transparent 0px,
        transparent 2px,
        rgba(255,255,255,0.03) 2px,
        rgba(255,255,255,0.03) 4px
      );
      pointer-events: none;
      z-index: 2;
    }

    .scanline-effect {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      pointer-events: none;
      z-index: 3;
      display: none;
    }

    .static-effect {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      pointer-events: none;
      z-index: 4;
      display: none;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" seed="2" /></filter><rect width="256" height="256" fill="%23000" filter="url(%23noise)" opacity="0.15"/></svg>');
      animation: staticNoise 0.05s steps(1) infinite;
    }

    @keyframes scanline {
      0% { transform: translateY(-100%); }
      100% { transform: translateY(100%); }
    }

    @keyframes staticNoise {
      0%, 100% { background-position: 0 0; }
      10% { background-position: 10px 10px; }
      20% { background-position: -10px 5px; }
      30% { background-position: 5px -10px; }
      40% { background-position: -5px -5px; }
    }

    @keyframes crtScanlineEffect {
      0% {
        box-shadow: 0 0 20px rgba(255,255,255,0.6) inset, 0 0 0 0 rgba(255,255,255,0) inset;
        top: 0;
      }
      100% {
        box-shadow: 0 0 20px rgba(255,255,255,0) inset, 0 100% 20px 0 rgba(255,255,255,0.3) inset;
        top: 100%;
      }
    }

    @keyframes crtPowerOn {
      0% {
        clip-path: inset(45% 100% 45% 100%);
        opacity: 0;
        background-color: #333;
        filter: brightness(0) saturate(0) contrast(0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8) inset, inset 0 0 0 0 rgba(255, 255, 255, 0);
      }
      5% {
        clip-path: inset(45% 100% 45% 100%);
        background-color: #333;
        filter: brightness(3) saturate(0) contrast(0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 1) inset, inset 0 0 100px 50px rgba(255, 255, 255, 0.8);
      }
      15% {
        clip-path: inset(45% 80% 45% 80%);
        background-color: #444;
        filter: brightness(3) saturate(0) contrast(0.4);
        box-shadow: 0 0 40px 0 rgba(255, 255, 255, 1) inset, inset 0 0 80px 30px rgba(255, 255, 255, 0.5);
      }
      30% {
        clip-path: inset(45% 40% 45% 40%);
        background-color: #555;
        filter: brightness(2.8) saturate(0.1) contrast(0.6);
        box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.9) inset, inset 0 0 60px 20px rgba(255, 255, 255, 0.3);
      }
      45% {
        clip-path: inset(45% 5% 45% 5%);
        background-color: #666;
        filter: brightness(2.5) saturate(0.2) contrast(0.8);
        box-shadow: 0 0 60px 0 rgba(255, 255, 255, 0.8) inset, inset 0 0 40px 10px rgba(255, 255, 255, 0.1);
      }
      55% {
        clip-path: inset(45% 0% 45% 0%);
        background-color: #555;
        filter: brightness(2.3) saturate(0.3) contrast(0.9);
        box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.7) inset, inset 0 0 30px 5px rgba(255, 255, 255, 0.05);
      }
      65% {
        clip-path: inset(25% 0% 25% 0%);
        background-color: #444;
        filter: brightness(1.8) saturate(0.5) contrast(1);
        box-shadow: 0 0 40px 0 rgba(255, 255, 255, 0.5) inset;
      }
      75% {
        clip-path: inset(5% 0% 5% 0%);
        background-color: #333;
        filter: brightness(1.4) saturate(0.75) contrast(1.05);
        box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.3) inset;
      }
      90% {
        clip-path: inset(0% 0% 0% 0%);
        background-color: #1a1a1a;
        filter: brightness(1.15) saturate(0.95) contrast(1);
        box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.1) inset;
      }
      100% {
        clip-path: inset(0% 0% 0% 0%);
        opacity: 1;
        background-color: #111;
        filter: brightness(1) saturate(1) contrast(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0) inset;
      }
    }

    @keyframes crtHorizontalBurn {
      0% {
        transform: scaleY(0) translateY(-50%);
        opacity: 1;
      }
      100% {
        transform: scaleY(1) translateY(0);
        opacity: 0
      }
    }

    @keyframes screenFlash {
      0% { opacity: 0; }
      25% { opacity: 1; }
      50% { opacity: 0.8; }
      75% { opacity: 1; }
      100% { opacity: 1; }
    }

    .screen.power-on {
      animation: crtPowerOn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, screenFlash 1s ease-in;
    }

    .screen.power-on #scanline-effect {
      display: block;
      animation: crtScanlineEffect 1.5s ease-out forwards;
    }

    @keyframes channelSwitch {
      0% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
      }
      25% {
        transform: translateY(-7px) scaleY(1.05);
        opacity: 0.7;
      }
      50% {
        transform: translateY(5px) scaleY(1);
        opacity: 0.5;
      }
      75% {
        transform: translateY(-5px) scaleY(1);
        opacity: 0.8;
      }
      100% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
      }
    }

    @keyframes channelStaticFlash {
      0%, 100% { opacity: 0; }
      50% { opacity: 0.4; }
    }

    .screen.channel-switch {
      animation: channelSwitch 0.4s cubic-bezier(0.34, 0.58, 0.84, 0.51) forwards;
    }

    .screen.channel-switch #static-effect {
      display: block;
      animation: channelStaticFlash 0.4s ease-out forwards;
    }

    .content {
      color: #0f0;
      text-shadow: 0 0 10px #0f0;
      text-align: center;
      z-index: 1;
    }

    /* Remote - closer to original */
    .remote {
      background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
      width: 220px;
      padding: 24px 18px;
      border-radius: 48px;
      box-shadow: 
        0 25px 50px rgba(0,0,0,0.8),
        inset 0 5px 10px rgba(255,255,255,0.1),
        inset 0 -5px 10px rgba(0,0,0,0.3),
        0 0 18px rgba(0, 255, 180, 0.16);
      border: 8px solid #333;
      align-self: center;
      margin-top: -150px;
      margin-left: 700px;
      position: relative;
      transform: rotate(-6deg);
      transform-origin: top right;
      z-index: 10;
    }

    .remote::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 3px;
      background: #555;
      border-radius: 2px;
    }

    .remote-top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 16px;
    }

    .remote-header {
      flex: 1;
      text-align: center;
      margin: 0;
      font-size: 0.75rem;
      opacity: 0.85;
    }

    .icon-btn img {
      width: 20px;
      height: 20px;
      display: block;
    }

    .controls-row {
      display: flex;
      gap: 18px;
      margin: 10px 0;
      justify-content: space-between;
    }

    .control-group {
      display: flex;
      flex-direction: column;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: inset 0 2px 4px rgba(255,255,255,0.1), 0 2px 5px rgba(0,0,0,0.3);
    }

    .control-group.large {
      flex: 1;
      max-width: 140px;
    }

    .control-part {
      background: linear-gradient(145deg, #444, #333);
      color: #ddd;
      padding: 12px 10px;
      text-align: center;
      cursor: pointer;
      transition: all 0.1s;
      font-size: 0.8rem;
      border: none;
      font-family: 'Press Start 2P', sans-serif;
    }

    .control-group.large .control-part {
      padding: 14px 10px;
      font-size: 0.9rem;
    }

    .control-group.large .control-part.up,
    .control-group.large .control-part.down {
      font-size: 1.1rem;
      padding: 10px 10px;
    }

    .control-group.large .control-part.label {
      background: linear-gradient(145deg, #333, #222);
      font-size: 0.7rem;
      padding: 10px 10px;
    }

    .control-part:hover {
      background: linear-gradient(145deg, #555, #444);
    }

    .control-part:active {
      transform: scale(0.95);
      background: linear-gradient(145deg, #333, #222);
    }

    .bottom-row {
      display: flex;
      gap: 8px;
      margin: 12px 0;
      justify-content: center;
    }

    .channel-display {
      text-align: center;
      margin-top: 16px;
      font-size: 0.7rem;
      opacity: 0.7;
    }

    button {
      background: linear-gradient(145deg, #444, #333);
      color: #ddd;
      border: none;
      padding: 12px 10px;
      margin: 6px 0;
      border-radius: 8px;
      font-family: 'Press Start 2P', sans-serif;
      font-size: 0.7rem;
      cursor: pointer;
      width: 100%;
      transition: all 0.1s;
      box-shadow: inset 0 2px 4px rgba(255,255,255,0.1), 0 2px 4px rgba(0,0,0,0.3);
    }

    button.small-btn {
      width: auto;
      padding: 8px 10px;
      font-size: 0.8rem;
      margin: 0;
    }

    button.icon-btn {
      width: auto;
      padding: 10px;
      background: linear-gradient(145deg, #333, #222);
      border-radius: 12px;
    }

    button:active {
      transform: scale(0.95);
      box-shadow: inset 0 1px 2px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.3);
    }

    .power-btn { 
      background: linear-gradient(145deg, #c00, #a00) !important; 
      color: white; 
      box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 2px 4px rgba(0,0,0,0.3);
      font-size: 1rem;
      padding: 8px;
    }

    .mute-btn {
      background: linear-gradient(145deg, #666, #555) !important;
      padding: 8px;
      font-size: 1rem;
    }

    .volume-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.8);
      padding: 20px;
      border-radius: 10px;
      display: none;
      z-index: 10;
      text-align: center;
      color: #0f0;
      text-shadow: 0 0 10px #0f0;
      font-size: 1.2rem;
    }

    .volume-bars {
      display: flex;
      gap: 5px;
      margin-top: 10px;
    }

    .volume-bar {
      width: 10px;
      height: 30px;
      background: #333;
      border: 1px solid #0f0;
    }

    .volume-bar.active {
      background: #0f0;
      box-shadow: 0 0 5px #0f0;
    }

    @keyframes channelPop {
      0% {
        opacity: 0;
        transform: scale(0.7);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes channelFade {
      0% {
        opacity: 1;
        transform: scale(1);
      }
      100% {
        opacity: 0;
        transform: scale(0.95);
      }
    }

    .channel-indicator {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(0, 0, 0, 0.7);
      padding: 8px 14px;
      border-radius: 6px;
      display: none;
      z-index: 9;
      color: #0f0;
      text-shadow: 0 0 8px #0f0;
      font-size: 0.8rem;
      font-family: 'Press Start 2P', sans-serif;
      border: 2px solid #0f0;
      box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
      animation: channelPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .channel-indicator.fade-out {
      animation: channelFade 0.3s ease-out forwards;
    }

    @media (max-width: 768px) {
      .tv-container,
      .remote {
        display: none;
      }
    }