.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.logo-icon {
  width: 50px;
  height: 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: #08140d;
  border-bottom: 2px solid #1aff4c;
  box-shadow: 0 0 20px rgba(0, 255, 76, 0.2);
  position: relative;
  z-index: 100;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color .25s ease, text-shadow .25s ease;
  position: relative;
}

.navbar a:hover,
.navbar a.active {
  color: #1aff4c;
  text-shadow: 0 0 8px #1aff4c;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .navbar ul {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    flex-direction: column;
    background: #08140d;
    border-left: 2px solid #1aff4c;
    padding: 10px;
    gap: 10px;
    display: none;
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.2);
  }

  .navbar ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}