/* App Navigation Bar */
.app-nav {
  position: relative;
  background: rgba(0,0,0,0.6);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 2000;
}

.hamburger {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #d4af37;
  border-radius: 1px;
}


.app-nav .spacer {
  width: 24px;
}

.app-nav .hamburger-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 2000;
}

.app-nav .hamburger-menu.open {
  display: flex;
  flex-direction: column;
}

.app-nav .menu-item {
  padding: 16px 20px;
  color: #d4af37;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-nav .menu-item:hover {
  background: rgba(212, 175, 55, 0.1);
  padding-left: 24px;
}

.app-nav .menu-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
  margin: 8px 0;
}

.app-nav .menu-logout {
  color: #ef4444;
  border-bottom: none;
}

.app-nav .menu-logout:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* Login button in top bar */
.login-button {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.login-button:hover {
  background: #d4af37;
  color: #0a0e1a;
}

/* User display in top bar */
.user-display {
  color: #d4af37;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.05);
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}
