*{
  box-sizing: border-box;
  transition: 0.5s linear;
}
html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Segoe UI', sans-serif;
      background-color: #111;
      color: white;
      overflow-x: hidden;
      overflow-y: auto !important;
    }

    canvas {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 0;
      pointer-events: none; /* Allows clicks to pass through canvas */
    }

    .navbar {
      z-index: 10;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link, .navbar-brand {
      color: #fff !important;
    }

    .nav-link:hover {
      color: #ffc107 !important;
    }

    .section {
      z-index: 5;
      position: relative;
      padding: 80px 20px;
      background: transparent;
    }

    .hero {
      text-align: center;
      padding-top: 120px;
    }

    .glass-box {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      color: white;
    }

    .section h2 {
      color: #ffc107;
      margin-bottom: 30px;
    }

    .btn-custom {
      margin: 5px;
    }

    .tokenomics-table th, .tokenomics-table td {
      color: white;
    }

    .faq h5 {
      color: #0dcaf0;
    }

    footer {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      text-align: center;
      padding: 40px 20px;
      font-size: 0.9rem;
      color: #ccc;
    }

.section{
  height: max-content;
  /* border:2px solid #ffc107; */
}

.spacer {
  height: 50px; /* Adjust height as needed */
}





/* .video-wrapper {
    overflow: hidden;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play-button::before {
    content: '';
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }

  .video-wrapper video {
    display: block;
  } */

  .video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper video {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button::before {
  content: '';
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px; /* Set fixed height */
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video fills the box and crops if needed */
  border-radius: 8px;
  display: block;
}


.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio (9 / 16 = 0.5625) */
  overflow: hidden;
  border-radius: 8px;
  background-color: #000; /* fallback while loading */
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop and fill without distortion */
  border-radius: 8px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .video-wrapper {
    padding-top: 75%; /* Adjust for smaller screens if needed */
  }

  #hero .glass-box .btn{
    width: 100%;
    margin: 10px 0;
  }
}