/* 🔹 App bar */
.app-bar {
  position: relative;
  width: 100vw; /* full chiều rộng màn hình */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid rgb(255, 255, 255);
  position: sticky;
  top: 0;
  z-index: 10;
}

/* 🔹 Nút cơ bản (chưa active) */
.app-bar a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  transition: all 0.3s ease;
}

/* Hover (chỉ làm sáng nhẹ viền) */
.app-bar a:hover {
  border-color: #d154d1;
  color: #d154d1;
}

/* 🔹 Nút đang active (trang hiện tại) */
.app-bar a.active {
  background: linear-gradient(90deg, #d154d1 0%, #4c65f6 100%);
  border: none;
  box-shadow: 0 0 15px rgba(181, 126, 255, 0.5);
  color: #fff;
}


/* Nút 3 gạch sát bên phải */
.hamburger {
  margin-left: right;  /* đẩy sang phải */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

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