/* Reset and general styles */
body {
    font-family: Arial, sans-serif;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff; /* White text color */
  }
  
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(5px); /* Adjust the blur radius as needed */
    -webkit-filter: blur(5px);
    z-index: -1;
  }
  
  /* Navbar styles */
  .navbar {
    background-color: rgba(0, 0, 0, 0.85) !important; /* Slightly transparent black background */
    border-color: transparent;
  }
  
  .navbar-brand,
  .navbar-nav .nav-link {
    color: #fff !important;
  }
  
  .navbar-toggler-icon {
    background-color: #fff;
  }
  
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  .navbar-toggler:focus,
  .navbar-toggler:active {
    outline: none;
  }
  
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.85); /* Slightly transparent black background */
  }
  
  .navbar-collapse .navbar-nav .nav-link {
    color: #fff !important;
  }
  
  .navbar-nav .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent black background for dropdown */
  }
  
  .navbar-nav .dropdown-menu .dropdown-item {
    color: #fff !important;
  }
  
  /* Jumbotron and container styles */
  .jumbotron {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85); /* Slightly transparent black background */
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 0.3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .container {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent black background */
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 0.3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .section {
    margin-top: 3rem;
  }
  
  /* Wiki section styles */
  #wiki {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.85); /* Slightly transparent black background */
    border-radius: 0.3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .wiki-logo {
    max-width: 100%;
    height: auto;
  }
  
  /* Download section styles */
  #download {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.85); /* Slightly transparent black background */
    border-radius: 0.3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  #download ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  #download ul li {
    margin-bottom: 1rem;
  }
  
  #download ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  #download ul li a:hover {
    text-decoration: underline;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .jumbotron h1 {
      font-size: 2.5rem;
    }
  
    .jumbotron p {
      font-size: 1rem;
    }
  }  