* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: rgb(15, 15, 15);
  color: white;
    background: linear-gradient(to right, hsla(253, 76%, 9%, 0.74), hsla(0, 0%, 0%, 0.41)), url(../img/6005990.jpg);
    
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.81);
  padding: -4px 25px;
  position: fixed;
  width: 99%;
  z-index: 1000;
    
  box-shadow: 0 4px 6px rgb(0, 0, 0);
}

.logo img {
  height: 68px;
    padding: 25px -1px;
      width: 120px;
    
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00ff88;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 75px;
    right: 0;
    background-color: rgba(0, 14, 133, 0.92);
    flex-direction: column;
    width: 77%;
    display: none;
    text-align: right;
    padding: 16px 25px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
