body {
    font-family: 'Roboto', sans-serif; /* Roboto as the primary font, fallback to sans-serif */
    margin: 0;
    padding: 0;
  }
  
  .header-video {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Adjust height as needed */
  }
  
  .header-video-content {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 100px;
    height: auto;
    animation: anim2 0.5s ease-in forwards;
  }
  
  .company-name {
    background: linear-gradient(90deg, #c084fc, #e879f9, #a855f7, #e879f9, #c084fc);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-clip: text;
    margin-left: 10px;
    font-size: 50px;
    animation: anim1 0.5s ease-in forwards, moveGradient 1s ease-in-out infinite alternate;
  }
  
  @keyframes moveGradient {
    from {
      background-position: 0% center;
    }
    to {
      background-position: 100% center;
    }
  }

  nav ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul.menu li {
    display: inline-block;
    margin-left: 20px;
  }
  
  nav ul.menu li:first-child {
    margin-left: 0;
  }
  
  nav ul.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 100px;
    transition: background-color 0.3s ease;
  }
  
  nav ul.menu li a:hover {
    color: black;
    background: #fff;
  }

  nav ul.menu li a.active {
    color: black;
    background: #fff;
  }

  nav ul.menu li a.discord {
    color: #5865f2;
    background: black;
    transition: box-shadow 0.3s; /* Add a transition for smoother effect */
    box-shadow: 0 0 50px #0400ff
  }

  /* Title Section Styles */
  .title-section {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
  }

  
  
  .section-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .section-description {
    font-size: 16px;
    color: #555;
  }
  
  /* About Us */
  .about {
    padding: 50px 0;
    background-color: #000000;
  }
  
  .aboutcon {
    width: 80%;
    margin: 0 auto;
  }
  
  h1, h2 {
    text-align: center;
  }

  .abouttitle {
    font-size: 50px;
    border-bottom: 10px solid #9000ff;
    color: #fff;
  }

  .aboutcon p {
    font-size: 20px;
    border-left: 5px solid #00aaff;
    color: #fff;
  }
  
  footer {
    background-color: #000000;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 0 200px #00aaff
  }

  .footerP {
    font-size: 18px;
    color: #fff;
  }

  /* Fade In Animation */
  @keyframes anim1 {
    from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(0%);
  }
}

  @keyframes anim2 {
    from {
      transform: translateX(-100%);
  }
  to {
      transform: translateX(0%);
  }
}

html {
  scroll-behavior: smooth;
}

.gradient-text {
    background: linear-gradient(90deg, #9200ba, #eca8ff, #9200ba);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-text 3s linear infinite;
}