@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Tajawal:wght@400;500;700;800&display=swap');

:root {
  --primary-color: #00FF9C;
  --bg-color: #0A0A0A;
  --card-color: #141414;
  --border-color: #262626;
  --text-color: #FFFFFF;
  --muted-color: #9CA3AF;
}

.light {
  --primary-color: #0D9488;
  --bg-color: #F9FAFB;
  --card-color: #FFFFFF;
  --border-color: #E5E7EB;
  --text-color: #111827;
  --muted-color: #4B5563;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), #3b82f6);
  z-index: 10000;
  transition: width 0.1s ease-out;
}

/* Animation */
.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

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

/* Remove default link underlines */
a { text-decoration: none; }

/* RTL Arabic font */
[dir="rtl"] body {
  font-family: 'Tajawal', 'Inter', sans-serif !important;
}
