body {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    background-color: black;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  canvas#stars-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: white;
  }
  
  .main-link {
    position: absolute;
    top: 20px;
    left: 30px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 3;
  }
  
  .video-wrapper {
    margin-top: 120px;
    position: relative;
    z-index: 2;
  }
  
  .video-cover {
    position: relative;
    width: 600px;
    max-width: 90vw;
    cursor: pointer;
  }
  
  .video-thumbnail {
    width: 100%;
    display: block;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    border-radius: 50%;
    transition: transform 0.3s;
  }
  
  .video-cover:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  video {
    width: 600px;
    max-width: 90vw;
    border: 3px solid black;
    display: block;
  }
  
  .hidden {
    display: none;
  }
  