.gogo-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gogo-navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gogo-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gogo-brand-title {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(45deg, #fffc41, #ff6dec, #19dc99);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.gogo-brand-subtitle {
  font-size: 0.75rem;
  color:#ecb131;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: -4px;
}

.gogo-navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .gogo-navbar-container {
    padding: 0 1rem;
    height: 60px;
  }
  
  .gogo-brand-title {
    font-size: 1.5rem;
  }
  
  .gogo-brand-subtitle {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .gogo-navbar-container {
    padding: 0 0.5rem;
  }
  
  .gogo-brand-title {
    font-size: 1.3rem;
  }
  
  .gogo-brand-subtitle {
    font-size: 0.65rem;
  }
}