.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-dark {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.text-gradient {
    background: linear-gradient(135deg, #1d4ed8 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no-scrollbar::-webkit-scrollbar { display: none; }

.rotate-90 {
    transform: rotate(90deg);
}

#mobileMenu {
    transition: all 0.3s ease;
}


* { font-family: 'DM Sans', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(251, 146, 60, 0.4); }
  50% { box-shadow: 0 0 35px rgba(251, 146, 60, 0.6); }
}
@keyframes scroll {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes feed-in {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pop-in {
  0% { opacity: 0; transform: translateY(20px) scale(0.9); }
  60% { transform: translateY(-4px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes gear-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes gear-spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes wrench-swing {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 8s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 2.5s ease-in-out infinite; }
.animate-scroll { animation: scroll 3s linear infinite; }
.animate-feed-in { animation: feed-in 0.5s ease-out forwards; }
.animate-pop-in { animation: pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.3s; opacity: 0; }
.animate-marquee { animation: marquee 25s linear infinite; }
.animate-bounce-slow { animation: bounce-slow 3s ease-in-out infinite; }
.animate-gear { animation: gear-spin 20s linear infinite; }
.animate-gear-reverse { animation: gear-spin-reverse 15s linear infinite; }
.animate-wrench { animation: wrench-swing 3s ease-in-out infinite; }

.mask-image-linear-gradient-to-r {
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.bg-grid-pattern {
  background-image: 
    linear-gradient(rgba(251, 146, 60, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 146, 60, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}