  body { background: #121212; color:#fff; font-family:'Inter', 'Segoe UI', Roboto, sans-serif; margin:0; padding:0; }
  .player-container { position:relative; max-width:900px; width:100%; margin:40px auto; background:#000; border-radius:12px; overflow:hidden; box-shadow:0 0 20px rgba(0,0,0,0.5); }
  video { width:100%; height:auto; display:block; border-radius:12px; background:#000; opacity:1; transition:opacity .6s ease-in-out; }
  video.fade-out{ opacity:0; } video.fade-in{ opacity:1; }

  #adLabel { position:absolute; top:15px; left:15px; background:rgba(255,255,255,0.95); color:#000; font-weight:700; font-size:14px; border-radius:4px; padding:4px 8px; display:none; z-index:1001; box-shadow:0 0 5px rgba(0,0,0,.4); }
  #adLabel i { color:#ff0000; margin-right:5px; }

  #adCountdown { position:absolute; top:15px; right:15px; background:rgba(0,0,0,0.7); color:#fff; font-size:14px; padding:5px 12px; border-radius:4px; display:none; z-index:1001; }


#skipBtn { position:absolute; bottom:20px; right:20px; background:rgba(255,215,0,0.95); color:#000; font-weight:600; border:none; border-radius:50px; padding:10px 20px; font-size:15px; cursor:pointer; display:none; z-index:1000; box-shadow:0 0 8px rgba(0,0,0,0.4); transition:all .25s ease; } #skipBtn:hover{ background:rgba(255,255,0,1); transform:scale(1.05); }


  #loader { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); display:none; z-index:1002; }

  #overlayPlayAd { position:absolute; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.6); display:none; align-items:center; justify-content:center; z-index:1001; flex-direction:column; text-align:center; }
  #overlayPlayAd button { padding:14px 22px; font-size:18px; font-weight:600; border:none; border-radius:8px; background:#ff0000; color:#fff; cursor:pointer; box-shadow:0 0 10px rgba(255,0,0,0.5); transition:background .3s, transform .2s; }
  #overlayPlayAd button:hover{ background:#ff3333; transform:scale(1.05); }

  @media (max-width:768px) {
    .player-container{ margin:20px auto; border-radius:10px; }
    #skipBtn{ bottom:15px; right:15px; font-size:14px; padding:8px 16px; }
    #overlayPlayAd button{ font-size:16px; padding:12px 18px; }
  }
  @media (max-width:480px) {
    #skipBtn{ bottom:12px; right:12px; font-size:13px; padding:8px 12px; }
  }