.videoAdUi {
      position: fixed;
      width: 320px;
      bottom: 20px;
      right: 20px; 
      width: 320px;
      height: 180px;
      background: #000;
      color: #fff;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(17, 2, 2, 0.747); /* Sombra */
      z-index: 9999;
    }

    .videoAdUiTopBar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 30px;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
    }

    .videoAdUiBottomBar {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 18px;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10px;
      color: #fff;
      font-size: 12px;
    }

    .videoAdUiIconV2 {
      position: absolute;
      bottom: 10px;
      right: 10px;
      height: 15px;
      width: 77px;
      overflow: hidden;
    }

    .videoAdUiIconV2 img {
      height: 100%;
      width: 100%;
    }

    .videoAdUi video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }