.navbar {
  background: rgba(31, 41, 51, 0.95);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 48px;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar-menu a {
  color: #e5e7eb;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: 0.3s;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-menu a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
}
