.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Mobile optimizations */
@media (max-width: 640px) {
  .hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .glass-nav {
    background: rgba(255, 255, 255, 0.95); /* More opaque on mobile for better readability */
  }
}

/* Marquee Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-scroll {
  display: flex;
  width: max-content;
}
