  body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif; /* Rounded font */
  }

  .video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
  }

  .video-background video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .menu-toggle {
    position: fixed;
    top: 1%;
    right: 1%;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 999;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 150px;
    background-color: rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2; /* Ensure menu is above the video */
  }

  .navigation.show {
    transform: translateX(0);
  }

  .navigation ul {
    list-style: none;
    padding: 20px;
    margin: 0;
  }

  .navigation ul li {
    margin-bottom: 20px;
    position: relative; /* To position the lines */
  }

  .buttonclick {
    color: transparent;
    text-decoration: none;
    background-image: radial-gradient(ellipse 50% 10px, rgba(193, 255, 255, 1), rgba(151, 255, 255, 0.8));

    background-clip: text;
    font-size: 18px;
    display: block;
  }
  .navigation ul li a {
    color: transparent;
    text-decoration: none;
    background-image: radial-gradient(ellipse 50% 10px, rgba(193, 255, 255, 1), rgba(151, 255, 255, 0.8));

    background-clip: text;
    font-size: 18px;
    display: block;
  }

  .navigation ul li:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    color: transparent;
    background-image: radial-gradient(ellipse 50% 10px, rgba(193, 255, 255, 1), rgba(151, 255, 255, 0.8));
  }

  @keyframes lighting{
    0%,5%{
        background-image: radial-gradient(ellipse 50% 10px, rgba(193, 255, 255, 1), rgba(151, 255, 255, 0.8));
        text-shadow: none;
    }
    100%{
        background-image: radial-gradient(ellipse 50% 10px, rgba(193, 255, 255, 1), rgba(151, 255, 255, 0.8));
        text-shadow: 0 0 5px  rgba(193, 255, 255, 1), 0 0 3px  rgba(151, 255, 255, 0.8);
    }
  }

  .fade-in-box {
    /* display: none; */
    width: calc(50% - 150px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 150px;
    color: rgba(151, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    animation: fadeIn 2s ease-in-out;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  .fade-in-box.show {
    width: calc(50%);
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  /* Responsive sizing based on window width */
  @media screen and (max-width: 768px) {
    .navigation-container {
      width: 100%;
      transform: translateX(0);
    }

    .navigation ul li a {
      font-size: 16px;
    }

    .navigation ul li:before {
      left: -10px;
      width: 3px;
    }
  }

  @media screen and (max-width: 480px) {
    .navigation ul li a {
      font-size: 14px;
    }

    .navigation ul li:before {
      left: -8px;
      width: 2px;
    }
  }