html, body {
            width: 100%;
            height: 100%;
            margin: 0;
            overflow: hidden;
        }
        #mse {
            width: 100%;
            height: 100%;
            position: relative;
        }

        #player {
            width: 100%;
            height: 100% !important;
            position: absolute;
        }
        #ad {
            background: rgba(0, 0, 0, 0.9);
            color: #fff;
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 100vw;
            transition: all .5s;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
        }
        #ad #cerrar {
            border-radius: 50%;
            width: 30px;
            height: 30px;
            border: 0;
            color: white;
            background: #d71616;
            position: fixed;
            top: 15px;
            right: 15px;
        }
        /* Adblock */
        .popup {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5);
          z-index: 9999;
        }
        .popup-content {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          background-color: #fff;
          padding: 20px;
          border-radius: 5px;
          text-align: center;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }
        .popup-content img {
          max-width: 100%;
          max-height: 80vh;
          display: block;
          margin: 0 auto;
        }
        /* Banner 300x250*/
        #banner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 250px;
            /* background-color: rgba(0, 0, 0, 0.7); */
            color: white;
            display: none;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 10;
        }
        .close-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   
    background-color: red;
    color: white;
    border-radius: 20px;
    padding: 4px 10px; /* smaller padding */
   
    display: flex;
    align-items: center;
    gap: 5px; /* less gap */
   
    cursor: pointer;
    font-size: 12px; /* smaller base text */
    z-index: 999999 !important;
   
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.close-icon {
    font-weight: bold;
    font-size: 15px; /* smaller X */
}
.close-text {
    font-size: 13px; /* smaller Close text */
    font-weight: 500;
}
/* Hide "About this video" - first item in right-click menu */
.jw-rightclick ul li:first-child { display: none !important; }