 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
      margin: 0;
      padding: 0;
      font-family: sans-serif;
      background-color: #1a1a1a;
    }

    body {
      background: url('../assets/bg.jpg') no-repeat center center;
      background-size: cover;
      overflow: hidden;
    }

    /* Logo */
    .logo {
      position: absolute;
      top: 30px;
      left: 50px;
      z-index: 10;
    }

   .logo img {
     height: 24px;
    width: auto;
    filter: brightness(10) invert(1) sepia(1) saturate(5) hue-rotate(150deg);}

    /* Container for embed + link */
    .embed-wrapper {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
    }

    /* Plain Link ABOVE the video */
    .top-link {
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 16px;
      z-index: 1;
    }

    .top-link a {
      color: inherit;
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      color: rgb(241, 226, 17);
      text-decoration: none;
      font-size: 2rem;
      opacity: 0.9;
      pointer-events: auto;
    }

    /* YouTube Embed */
    .video-container {
      width: 85vw;
      max-width: 1200px;
      height: 69vh;
    }

    .video-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    /* Navigation Links */
    .nav-links {
      position: absolute;
      bottom: 60px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
      z-index: 10;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 0.5px;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }

    .nav-links a:hover {
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
         body {
        background-attachment: scroll;
      }

      .logo img {
        height: 20px;
      }

      .top-link {
        margin-bottom: 12px;
        font-size: 16px;
      }

      .video-container {
        width: 90vw;
        height: 50vh;
      }

      .nav-links {
        bottom: 40px;
        gap: 16px;
        font-size: 10px;
      }
    }

    @media (max-width: 480px) {
      .logo {
        left: 28px;
      }

      .top-link {
        font-size: 14px;
      }

      .nav-links {
        font-size: 9px;
        gap: 12px;
      }
    }