.video-player {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        background: #000;
      }
      .video-player video {
        display: block;
        width: 100%;
      }
      .video-controls {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
      }
      .video-btn {
        width: 26px;
        height: 26px;
        min-width: 26px;
        border: none;
        border-radius: 50%;
        background: rgba(255,255,255,0.9);
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        flex-shrink: 0;
      }
      .video-btn:hover {
        background: #fff;
        transform: scale(1.1);
      }
      .video-btn.play-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        background: #00AEEF;
        color: #fff;
      }
      .video-btn.play-btn:hover {
        background: #0095cc;
      }
      .video-btn svg {
        width: 12px;
        height: 12px;
      }
      .video-btn.play-btn svg {
        width: 16px;
        height: 16px;
      }
      #btn-stop svg {
        width: 16px;
        height: 16px;
      }
      .video-progress {
        flex: 1;
        height: 6px;
        background: rgba(255,255,255,0.3);
        border-radius: 3px;
        cursor: pointer;
        overflow: hidden;
      }
      .video-progress-bar {
        height: 100%;
        background: #00AEEF;
        width: 0%;
        border-radius: 3px;
        transition: width 0.1s linear;
      }
      .video-time {
        color: #fff;
        font-size: 11px;
        font-weight: 500;
        min-width: 70px;
        text-align: right;
      }
      .video-volume {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .video-volume-btn {
        width: 22px;
        height: 22px;
        min-width: 22px;
        border: none;
        border-radius: 50%;
        background: transparent;
        color: #00AEEF;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        flex-shrink: 0;
      }
      .video-volume-btn:hover {
        background: rgba(255,255,255,0.2);
      }
      .video-volume-btn svg {
        width: 12px;
        height: 12px;
      }
      .btn-fullscreen {
        width: 33px;
        height: 33px;
        min-width: 33px;
        background: rgba(255,255,255,0.9);
        color: #333;
      }
      .btn-fullscreen:hover {
        background: #fff;
      }
      .btn-fullscreen svg {
        width: 18px;
        height: 18px;
      }
      .video-volume-slider {
        width: 80px;
        height: 6px;
        -webkit-appearance: none;
        appearance: none;
        background: rgba(255,255,255,0.3);
        border-radius: 3px;
        cursor: pointer;
      }
      .video-volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 14px;
        height: 14px;
        background: #fff;
        border-radius: 50%;
        cursor: pointer;
        transition: transform 0.2s ease;
      }
      .video-volume-slider::-webkit-slider-thumb:hover {
        transform: scale(1.2);
      }
      .video-volume-slider::-moz-range-thumb {
        width: 14px;
        height: 14px;
        background: #fff;
        border: none;
        border-radius: 50%;
        cursor: pointer;
      }

      /* Responsive styles for mobile */
      @media (max-width: 576px) {
        .video-controls {
          flex-wrap: wrap;
          gap: 6px;
          padding: 8px 10px;
        }
        .video-btn {
          width: 24px;
          height: 24px;
          min-width: 24px;
        }
        .video-btn.play-btn {
          width: 28px;
          height: 28px;
          min-width: 28px;
        }
        .video-btn svg {
          width: 10px;
          height: 10px;
        }
        .video-progress {
          order: 10;
          flex-basis: 100%;
          height: 6px;
          margin-top: 4px;
        }
        .video-time {
          font-size: 10px;
          min-width: auto;
          flex: 1;
          text-align: center;
        }
        .video-volume-slider {
          display: none;
        }
        .video-volume-btn {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
        .video-volume-btn svg {
          width: 10px;
          height: 10px;
        }
      }

      /* Extra small devices */
      @media (max-width: 400px) {
        .video-controls {
          padding: 6px 8px;
          gap: 4px;
        }
        .video-btn {
          width: 22px;
          height: 22px;
          min-width: 22px;
        }
        .video-btn.play-btn {
          width: 26px;
          height: 26px;
          min-width: 26px;
        }
        .video-btn svg {
          width: 9px;
          height: 9px;
        }
        .video-time {
          font-size: 9px;
        }
        .video-volume-btn {
          width: 18px;
          height: 18px;
          min-width: 18px;
        }
        .video-volume-btn svg {
          width: 9px;
          height: 9px;
        }
      }