.video-container {
      position: relative;
      width: 100%;
      margin: auto;
    }

    video {
      width: 100%;
    }

    .video-front {
      max-width: 98%;
      height: auto;
      border: solid 3px #826797;
      box-shadow: 4px 4px 20px 0px #45125b;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 90px;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: opacity 0.3s ease;
    }

    .overlay.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .play-icon {
      width: 80px;
      height: 80px;
      background: white;
      clip-path: polygon(30% 20%, 75% 50%, 30% 80%);
    }