
.header[data-v-b0208bdf] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}
.header-bg[data-v-b0208bdf] {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bg-gradient[data-v-b0208bdf] {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: all 0.3s ease;
}
.header.scrolled .bg-gradient[data-v-b0208bdf] {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}
.header-container[data-v-b0208bdf] {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.logo[data-v-b0208bdf] {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-image[data-v-b0208bdf] {
  height: 36px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Desktop Navigation */
.nav-desktop[data-v-b0208bdf] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link[data-v-b0208bdf] {
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-link[data-v-b0208bdf]::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366F1, #22C55E);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link[data-v-b0208bdf]:hover {
  color: #fff;
}
.nav-link[data-v-b0208bdf]:hover::after {
  width: calc(100% - 2.5rem);
}

/* Login Button */
.login-btn[data-v-b0208bdf] {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(99, 102, 241, 0.5);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.login-btn[data-v-b0208bdf]:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #6366F1;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}
.btn-glow[data-v-b0208bdf] {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #6366F1, #22C55E);
  border-radius: 12px;
  opacity: 0;
  filter: blur(10px);
  z-index: -1;
  transition: opacity 0.3s ease;
}
.login-btn:hover .btn-glow[data-v-b0208bdf] {
  opacity: 0.3;
}

/* Mobile Menu Button */
.mobile-menu-btn[data-v-b0208bdf] {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-menu-btn[data-v-b0208bdf]:hover {
  background: rgba(99, 102, 241, 0.2);
}
.menu-icon[data-v-b0208bdf] {
  width: 24px;
  height: 24px;
  color: #fff;
}

/* Mobile Menu */
.mobile-menu[data-v-b0208bdf] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  padding: 1.5rem;
}
.mobile-nav[data-v-b0208bdf] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav-link[data-v-b0208bdf] {
  padding: 1rem;
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.mobile-nav-link[data-v-b0208bdf]:hover {
  background: rgba(99, 102, 241, 0.1);
  color: #fff;
}
.mobile-login-btn[data-v-b0208bdf] {
  padding: 1rem;
  background: linear-gradient(135deg, #6366F1, #EC4899);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  margin-top: 0.5rem;
}

/* Transitions */
.slide-enter-active[data-v-b0208bdf],
.slide-leave-active[data-v-b0208bdf] {
  transition: all 0.3s ease;
}
.slide-enter-from[data-v-b0208bdf],
.slide-leave-to[data-v-b0208bdf] {
  opacity: 0;
  transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
.nav-desktop[data-v-b0208bdf],
  .login-btn[data-v-b0208bdf] {
    display: none;
}
.mobile-menu-btn[data-v-b0208bdf] {
    display: flex;
}
.header[data-v-b0208bdf] {
    padding: 1rem;
}
}
