*, *::before, *::after {
      margin: 0; padding: 0; box-sizing: border-box;
    }

    html, body {
      width: 100%; height: 100%;
      background: #f5f0e8;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    .scene {
      position: relative;
      z-index: 1;
      animation: sceneIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      opacity: 0;
    }

    @keyframes sceneIn {
      from { opacity: 0; transform: translateY(24px) rotate(-4deg); }
      to   { opacity: 1; transform: translateY(0) rotate(-4deg); }
    }

    /* ── RECORD ── */
    .record {
      width: 630px;
      height: 630px;
      border-radius: 50%;
      position: relative;
      animation: spin 4s linear infinite;
      cursor: default;
    }

    .record.paused {
      animation-play-state: paused;
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .vinyl {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background:
        repeating-radial-gradient(
          circle at center,
          #111 0px,
          #1a1a1a 1px,
          #111 2px,
          #0d0d0d 3px,
          #111 4px
        );
      box-shadow:
        0 0 0 3px #222,
        0 20px 60px rgba(0,0,0,0.5),
        0 6px 20px rgba(0,0,0,0.4);
    }

    .vinyl::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255,255,255,0.03) 30deg,
        transparent 60deg,
        rgba(255,255,255,0.05) 90deg,
        transparent 120deg,
        rgba(255,255,255,0.02) 180deg,
        transparent 240deg,
        rgba(255,255,255,0.04) 300deg,
        transparent 360deg
      );
    }

    /* ── LABEL ── */
    .label {
      position: absolute;
      top: 50%; left: 50%;
      width: 255px; height: 255px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: var(--label-color, #fff);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      box-shadow: inset 0 2px 8px rgba(0,0,0,0.15);
      overflow: hidden;
    }

    .label::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px solid rgba(0,0,0,0.06);
      box-shadow: inset 0 0 0 6px rgba(0,0,0,0.03);
    }

    .label-brand {
      font-family: 'Bungee Shade', sans-serif;
      font-size: 2rem;
      color: #fff;
      -webkit-text-stroke: 1.5px #000;
      letter-spacing: 1px;
      line-height: 1;
      position: relative;
      z-index: 1;
    }

    .label-tagline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.675rem;
      letter-spacing: 2px;
      color: #1d1d1d;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .label::after {
      content: '';
      position: absolute;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: #111;
      box-shadow: 0 0 0 2px #333;
      z-index: 2;
    }

    /* ── TONEARM ── */
    /* No CSS keyframe animation — JS drives the transform entirely */
    
    .tonearm-base-svg {
      position: absolute;
      top: -10px;
      right: -130px;
      width: 160px;
      height: 120px;
      z-index: 3;
      pointer-events: none;
    }

    .tonearm-wrap {
      position: absolute;
      top: 50px;
      right: -130px;
      width: 160px;
      height: 480px;
      transform-origin: 80px 10px;
      cursor: grab;
      user-select: none;
      touch-action: none;
      z-index: 2;
    }

    .tonearm-svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 160px;
      height: 480px;
      overflow: visible;
    }


    .tonearm-wrap:active { cursor: grabbing; }

    /* ── ARM LABELS ── */
    .arm-label {
      position: absolute;
      right: 60px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 2px;
      color: #222;
      background: rgba(245,240,232,0.96);
      border: 1px solid #999;
      padding: 6px 14px;
      border-radius: 4px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
      cursor: pointer;
      z-index: 10;
    }

    .arm-label.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .arm-label:hover { 
      background: #000;
      color: #fff;
      /* background: #ddd8cc;  */
    }

    /* ── BOTTOM / HINT ── */
    .bottom {
      position: fixed;
      bottom: 1.25rem;
      left: 0; right: 0;
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.0rem;
      letter-spacing: 0.15rem;
      color: #818181;
    }

    .hint {
      position: fixed;
      top: 1.5rem;
      left: 0; right: 0;
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.2rem;
      color: #8f8f8f;
      animation: fadeHint 3s 1.8s forwards;
      opacity: 0;
    }

    @keyframes fadeHint {
      0%   { opacity: 0; }
      20%  { opacity: 1; }
      80%  { opacity: 1; }
      100% { opacity: 0; }
    }