.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(109, 40, 217, 0.5);
  height: 4rem;
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.logo a {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent-purple);
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  gap: 1.5rem;
}

.desktop-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--accent-purple);
}
