:root {
  --primary-glow: rgba(255, 215, 0, 0.4);
  --secondary-glow: rgba(255, 140, 0, 0.3);
  --bg-aura: #fdfcfb;
}

@keyframes mesh-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bg-aura-mesh {
  background: linear-gradient(-45deg, #fffbeb, #fff7ed, #fffcfb, #fff7ed);
  background-size: 400% 400%;
  animation: mesh-gradient 15s ease infinite;
}

.solar-glow {
  box-shadow: 0 0 30px var(--primary-glow);
  transition: box-shadow 0.3s ease;
}

.solar-glow:hover {
  box-shadow: 0 0 50px var(--secondary-glow);
}

.glass-vibrant {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(255, 140, 0, 0.05);
}

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

.button-vibrant {
  background: linear-gradient(135deg, #ff8c00 0%, #f7b733 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}

.button-vibrant:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.float-slow {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-aura);
  color: #1a1a1a;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #fdfcfb;
}

::-webkit-scrollbar-thumb {
  background: #fb923c;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f59e0b;
}
