  * { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { width: 100%; height: 100%; background: #000; overflow: hidden; }
  
  .stream-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
  }

  iframe#stream {
    position: absolute;
    border: none;
    top: -250px;     /* sembunyikan header biru + logo LIVE SPORTS */
    left: 0;
    width: 100%;
    height: calc(100% + 320px);   /* sedikit ditambah agar video tetap pas */
  }

  .overlay { 
    position: absolute; 
    background: #000; 
    z-index: 10; 
    pointer-events: all; 
  }

  #block-top    { top: 0; left: 0; right: 0; height: 0px; }   /* header */
  #block-bottom { bottom: 0; left: 0; right: 0; height: 140px; } /* chat + kontrol bawah */
  #block-left   { top: 0; left: 0; bottom: 0; width: 0px; }
  #block-right  { top: 0; right: 0; bottom: 0; width: 0px; }

  /* Debug panel */
  #toggle-btn {
    position: fixed; top: 8px; right: 8px;
    background: rgba(0,0,0,0.75); color: #fff;
    border: 1px solid #555; padding: 5px 10px;
    border-radius: 6px; font-size: 11px; cursor: pointer;
    z-index: 9999; font-family: monospace;
  }

  #controls {
    position: fixed; top: 36px; right: 8px;
    background: rgba(12,12,12,0.93); color: #eee;
    padding: 12px 14px; border-radius: 10px;
    font-family: monospace; font-size: 12px;
    z-index: 9998; display: none; flex-direction: column;
    gap: 7px; min-width: 240px; border: 1px solid #333;
  }
  #controls.show { display: flex; }
  #controls .row { display: flex; justify-content: space-between; align-items: center; }
  #controls .lbl { color: #999; }
  #controls input {
    width: 72px; background: #1a1a1a; color: #fff;
    border: 1px solid #444; padding: 3px 6px;
    border-radius: 4px; font-family: monospace;
    font-size: 12px; text-align: right;
  }
  #controls .sep { border-top: 1px solid #2a2a2a; margin: 8px 0; }
  #copy-btn {
    padding: 6px 10px; background: #222; color: #9ef;
    border: 1px solid #444; border-radius: 4px;
    cursor: pointer; font-size: 11px;
  }
  #copy-out { font-size: 10px; color: #6d6; line-height: 1.5; word-break: break-all; margin-top: 6px; }