/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #141519;
    --secondary-color: #27dddf;
    --font-family: 'Poppins', sans-serif;
  }
  
  body {
    font-family: var(--font-family);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    min-height: 100vh;
  }
  
  /* Banner Shared Style */
  .banner {
    width: 100vw;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  
  .banner img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  
  .logo img {
    width: 100px;
    height: auto;
    margin: 20px auto;
  }
  
  /* Animation Elements */
  .circle-dot-desktop {
    position: absolute;
    top: 48%;
    left: 15%;
    width: 3%;
    height: 5%;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: drop-circle-desktop 2s ease-out forwards;
    z-index: 20;
  }
  
  @keyframes drop-circle-desktop {
    0% {
      left: 15%;
      opacity: 0;
      transform: translateX(-50%) scale(0.5);
    }
    100% {
      left: 50%;
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
  }
  
  .circle-dot-mobile {
    position: absolute;
    top: 0%;
    left: 88%;
    width: 5%;
    height: 4%;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: drop-circle-mobile 2s ease-out forwards;
    z-index: 20;
  }
  
  @keyframes drop-circle-mobile {
    0% {
      top: 0%;
      opacity: 0;
      transform: translateX(-50%) scale(0.3);
    }
    100% {
      top: 65%;
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 999;
    height: auto;
  }
  
  nav a {
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #27dddf;
  }
  

  .about {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100vh;
    font-size: 18px;
    opacity: 0.5;
  }
  .about h2 {
    font-size: 50px;
    font-weight: 600;
 
  }
  .terms {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100vh;
    font-size: 18px;
    opacity: 0.5;
  }
  .terms h2 {
    font-size: 50px;
    font-weight: 600;
 
  }