/* Basic styles kept compatible with the original template */

:root {
  --orange: #FF8C42;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', Arial, sans-serif;
}

.text-gradient-orange {
  background: linear-gradient(90deg, #FF8C42, #FFB703);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

/* Minor improvements */
html {
  scroll-behavior: smooth;
}
