.navbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
  font-size: 20px;
  font-weight: 700;
}

.logo span {
  color: #e8692a;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-right: auto;
}

.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 8px;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.nav-auth-btn {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  background: rgba(232,105,42,0.15);
  color: #e8692a;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.nav-auth-btn:hover {
  background: rgba(232,105,42,0.28);
  color: #ff7a35;
}

.search-box input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  color: #fff;
  width: 200px;
  outline: none;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.3);
}
a.logo {
  text-decoration: none;
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: #0d1520;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    padding: 12px 16px;
    gap: 4px;
    z-index: 100;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .search-box input { width: 140px; }
}