@import url('https://fonts.googleapis.com/css2?family=Geo:ital@0;1&family=Russo+One&family=VT323&display=swap');
    :root {
      --oel-cyan: #7defff;
      --oel-blue: #248bff;
      --oel-green: #7cffbf;
      --oel-dark: #010711;
    }

    #pioneer-widget {
      width: min(880px, 100%);
      margin: 0 auto;
    }

    .pioneer-oel {
      width: 100%;
      aspect-ratio: 5 / 1;
      min-height: 116px;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      border: 1px solid #317ca0;
      border-radius: 10px;
      background: #010711;
      box-shadow:
        inset 0 0 0 2px rgba(143, 240, 255, .055),
        inset 0 0 26px rgba(20, 142, 255, .22),
        0 0 15px rgba(32, 157, 255, .18);
      cursor: pointer;
      user-select: none;
    }

    /* The user's video is always behind the interface. */
    .oel-video,
    .oel-video-tint,
    .oel-dark-layer,
    .oel-ui,
    .oel-muted-screen,
    .oel-scanlines {
      position: absolute;
      inset: 0;
    }

    .oel-video {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .99;
      filter: brightness(0.5);
      pointer-events: none;
    }

    .video-tint {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;

    }

    .oel-dark-layer {
      z-index: 2;
      background: #000309;
      opacity: 0;
      pointer-events: none;
      transition: opacity 260ms linear;
    }

    .oel-ui {
      z-index: 3;
      display: grid;
      grid-template-columns: minmax(130px, 21%) 1fr minmax(154px, 24%);
      grid-template-rows: 48% 52%;
      gap: 0 10px;
      padding: clamp(9px, 0.6vw, 15px) clamp(11px, 1.1vw, 20px);
      transition: opacity 220ms linear;
    }

    .compact-disc {
      text-align: left;
      grid-column: 1;
      align-self: start;
      color: var(--oel-cyan);
      font-family: "Russo One", Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
      font-size: clamp(15px, 2.55vw, 25px);
      font-weight: 900;
      line-height: .77;
      letter-spacing: -.095em; 
      text-shadow: 0 0 4px var(--oel-green), 0 0 11px rgba(97, 255, 184, .42);
      white-space: nowrap;
    }

    .compact-disc span {
      display: block;
      margin-left: 3em;
      margin-top: .05em;
    }

    .oel-timer {
      grid-column: 3;
      justify-self: end;
      align-self: start;
      display: flex;
      align-items: baseline;
      color: var(--oel-cyan);
      font-family: "Geo", ui-monospace, monospace;
      font-weight: 700;
      white-space: nowrap;
      text-shadow: 0 0 4px var(--oel-cyan), 0 0 11px var(--oel-blue);
    }

    .timer-number {
      font-size: clamp(25px, 3vw, 46px);
      line-height: .8;
      letter-spacing: -.12em;
    }

    .timer-unit {
      margin-left: .31em;
      font-size: clamp(12px, 1.35vw, 20px);
      line-height: 1;
      letter-spacing: -.03em;
    }

    .timer-separator {
      padding: 0 .12em 0 .18em;
      font-size: clamp(12px, 1.85vw, 17px);
      line-height: .8;
      color: var(--green);
    }

    .track-window {
      grid-column: 1 / 3;
      grid-row: 2;
      align-self: end;
      min-width: 0;
      overflow: hidden;
      height: clamp(21px, 3vw, 28px);
      border-top: 1px solid rgba(103, 229, 255, .35);
      border-bottom: 1px solid rgba(103, 229, 255, .16);
      background: rgba(1, 10, 24, .70);
    }

    .track-marquee {
      display: inline-flex;
      align-items: center;
      width: max-content;
      min-width: 100%;
      height: 100%;
      padding-left: 100%;
      animation: marquee 12s linear infinite;
      color: var(--oel-cyan);
      font-size: clamp(10px, 1.8vw, 16px);
      font-weight: 700;
      letter-spacing: .05em;
      text-shadow: 0 0 4px var(--oel-cyan), 0 0 12px var(--oel-blue);
      white-space: pre;
    }

    .track-marquee span { padding-right: 5.4rem; }
    .is-paused .track-marquee { animation-play-state: paused; }

    @keyframes marquee { to { transform: translateX(-50%); } }

    .eq {
      grid-column: 3;
      grid-row: 2;
      align-self: stretch;
      justify-self: end;
      width: 100%;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 2px;
      padding-top: 2px;
    }

    .eq-bar {
      display: block;
      flex: 1 1 0;
      min-width: 2px;
      height: 8%;
      background: linear-gradient(to top, var(--oel-green) 0 36%, var(--oel-cyan) 37% 73%, #d9ffff 74% 100%);
      box-shadow: 0 0 4px var(--oel-cyan), 0 0 9px rgba(20, 155, 255, .55);
      transition: height 90ms steps(2, end), opacity 180ms linear;
    }

    .oel-muted-screen {
      z-index: 4;
      display: grid;
      place-items: center;
      align-content: center;
      gap: 5px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 220ms linear;
    }

    .muted-logo {
      width: min(190px, 58%);
      height: 64px;
      object-fit: contain;
      filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(164deg) drop-shadow(0 0 5px var(--oel-blue));
      opacity: .88;
    }

    .muted-hint {
      color: var(--oel-cyan);
      font-size: clamp(8px, 1.25vw, 12px);
      letter-spacing: .08em;
      text-shadow: 0 0 5px var(--oel-cyan), 0 0 11px var(--oel-blue);
    }



    .oel-scanlines {
      z-index: 8;
      pointer-events: none;
      opacity: .22;
      background: repeating-linear-gradient(to bottom, transparent 0, transparent 2px, rgba(0,0,0,.7) 3px, rgba(0,0,0,.7) 4px);
      mix-blend-mode: multiply;
    }

    .pioneer-oel::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 9;
      pointer-events: none;
      background: linear-gradient(108deg, transparent 10%, rgba(214,255,255,.075) 24%, transparent 39%), linear-gradient(180deg, rgba(255,255,255,.05), transparent 16%, transparent 75%, rgba(0,0,0,.24));
    }

    .oel-controls { display: none; }

    /* Muted state: dark display, logo, and click-to-play instruction. */
    .pioneer-oel.is-muted .oel-video { opacity: 0; }
    .pioneer-oel.is-muted .oel-video-tint { opacity: 0; }
    .pioneer-oel.is-muted .oel-dark-layer { opacity: 1; }
    .pioneer-oel.is-muted .oel-ui { opacity: 0; }
    .pioneer-oel.is-muted .oel-muted-screen { opacity: 1; }

    @media (max-width: 510px) {
      .pioneer-oel { min-height: 96px; aspect-ratio: 4 / 1; }
      .oel-ui { grid-template-columns: 1fr 37%; gap: 0 6px; }
      .oel-timer { grid-column: 2; }
      .track-window { grid-column: 1 / 3; }
      .eq { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
    }