   html, body {
      margin: 0;
      padding: 0;
      min-height: 100%;
      background-color: #000;
      overflow-y: auto;
      font-family: Arial, sans-serif;
    }
    .video-wrapper {
      width: 100%;
      min-height: 100vh;
      background-color: black;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      flex-direction: column;
      padding: 2vh 0;
    }
    #video-player {
      width: 60vw;
      height: auto;
      max-height: 60vh;
      object-fit: contain;
      cursor: pointer;
      transition: transform 0.2s ease;
    }
    .titles {
      margin-top: 20px;
      text-align: center;
    }
    .title {
      cursor: pointer;
      padding: 5px 10px;
      margin: 3px;
      background: rgba(255,255,255,0.2);
      border-radius: 5px;
      display: inline-block;
      color: white;
    }
    .title:hover {
      background: rgba(255,255,255,0.4);
    }
    .info-text {
      color: white;
      margin-top: 10px;
      text-align: center;
    }