.bd-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #000 0%, #111 100%);
  border-bottom: 1px solid #d4af37;
  padding: 12px 20px;
  z-index: 1000;
}

.bd-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.bd-logo {
  width: 44px;
  height: 44px;
}

.bd-header-text {
  display: flex;
  flex-direction: column;
}

.bd-title {
  font-family: "Lilita One", cursive;
  color: #d4af37;
  font-size: 1.2rem;
  line-height: 1.1;
}

.bd-subtitle {
  font-size: 0.75rem;
  color: #aaa;
}

.bd-owner-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
}

/* MENU */
.bd-menu {
  position: absolute;
  top: 100%;
  left: 20px;
  background: #0c0c0c;
  border: 1px solid #d4af37;
  border-radius: 10px;
  padding: 10px;
  display: none;
  flex-direction: column;
  min-width: 220px;
}

.bd-menu a {
  color: #f5f5f5;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
}

.bd-menu a:hover {
  background: #1a1a1a;
}

/* OPEN STATE */
.bd-menu.open {
  display: flex;
}
