.header {
  position: relative;
  width: 100%;
  padding: 12px 0;
  margin-top: 0;
  backdrop-filter: blur(12px);
  background: rgba(26, 26, 26, 0.8);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.logo-icon {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  color: #A0A4B8;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  padding: 8px 10px;
}

.nav-links a:hover {
  color: #ffffff;
}

.docs-link {
  color: #ffffff !important;
}

.cta-button {
  background: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%);
  padding: 12px 32px;
  border-radius: 12px;
  color: white !important;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  color: white !important;
}

.arrow {
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.cta-button:hover .arrow {
  transform: translateX(2px);
}

/* Mobile navigation */
@media (max-width: 768px) {
  .nav-links {
    gap: 24px;
  }
  
  .nav-links a:not(.cta-button) {
    display: none;
  }
  
  .cta-button {
    margin-left: auto;
  }
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .header {
    padding: 16px 0;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 18px 0;
    margin-top: 0;
  }
} 