.navbar {
  height: 70px;
  padding: 0 30px;
  background: rgba(15,15,15,0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  height: 98px;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  cursor: pointer;
}

.menu-icon {
  display: none;
  color: #fff;
  font-size: 22px;
}

@media (max-width: 768px) {
  .menu-icon { display: block; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
  }
  .nav-links.show { max-height: 300px; }
}