/* Reset basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html, body {
    background-color: #000; /* or any color you want */
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #2f2f2f, #111);
    color: #ffffff;
    line-height: 1.6;
  }
  
  /* Navigation Bar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #1a1a1a;
    border-bottom: 1px solid #444;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5em;
    color: #fbbb1a;
    font-weight: bold;
    gap: 10px; /* space between icon and text */
  }
  
  .logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
  
  .nav-links .nav-link {
    color: #fbbb1a;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #ffffff;
  }
  
  /* Container */
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 20px;
  }
  
  /* Hero Section */
  .hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fbbb1a;
  }

  .topVid {
    background: #000;
    /* background: linear-gradient(to bottom, #2f2f2f00, #111);*/
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }
  
  .intro {
    font-size: 1.1em;
    max-width: 900px;
    margin: 10px auto;
    text-align: center;
    
  }
  
  /* Download Buttons */
  .downloads {
    margin-top: 60px;
    text-align: center;
    
  }
  
  .downloads h2 {
    color: #fbbb1a;
    margin-bottom: 30px;
    font-size: 2em;
  }

  p a 
  {
    color: #fbbb1a;
    text-decoration: underline;
  }
  
  .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
  }
  
  a.button {
    background-color: #007acc;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  a {
    text-decoration: none;
  }
  
  a.button:hover {
    background-color: #005fa3;
    transform: translateY(-2px);
  }
  
  a.button.donate {
    background: #fbbb1a;
    color: #111;
  }
  
  a.button.donate:hover {
    background: #ffcc44;
  }
  
  /* Footer */
  .footer {
    background: #111;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9em;
    color: #888;
    border-top: 1px solid #333;
    margin-top: 60px;
  }

  .footer a {
    color: #fbbb1a;
    text-decoration: none;
  }
  
  ul, ol {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  li {
    margin-bottom: 10px;
    color: #cccccc;
  }

  h2{
    color: #fbbb1a;
    margin-bottom: 20px;
  }



  .screenshots {
    margin-top: 60px;
    text-align: center;
  }
  
  .carousel {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    scroll-behavior: smooth;
  }
  
  .carousel-track {
    display: inline-flex;
    gap: 10px;
  }
  
  .carousel-image {
    height: 150px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .carousel-image:hover {
    transform: scale(1.05);
  }
  
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
  }
  