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

:root {
  --color-brand-coral: #FF6B6B;
  --color-brand-coralLight: #FF8E8E;
  --color-brand-indigo: #4F46E5;
  --color-brand-indigoLight: #6366F1;
  --color-brand-teal: #06B6D4;
  --color-brand-tealLight: #22D3EE;
  --color-brand-violet: #8B5CF6;
  --color-brand-fuchsia: #D946EF;
  --color-brand-darkBg: #09090B;
}

html {
  scroll-behavior: smooth;
  background-color: #050508;
  color: #f3f4f6;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-color: #050508;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', 'Outfit', 'Inter', sans-serif;
}

/* Custom Utilities */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-nav {
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card-hover {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.glass-card-hover:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px 0 rgba(79, 70, 229, 0.15);
  transform: translateY(-5px);
}

.radial-mask {
  mask-image: radial-gradient(circle at center, black 40%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 68%);
}

/* Custom Ambient Mesh Gradients */
.gradient-orb-1 {
  background: radial-gradient(circle, rgba(255, 107, 107, 0.18) 0%, rgba(255, 107, 107, 0) 70%);
  filter: blur(60px);
}

.gradient-orb-2 {
  background: radial-gradient(circle, rgba(79, 70, 229, 0.22) 0%, rgba(79, 70, 229, 0) 70%);
  filter: blur(80px);
}

.gradient-orb-3 {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0) 70%);
  filter: blur(70px);
}

.gradient-orb-4 {
  background: radial-gradient(circle, rgba(217, 70, 239, 0.15) 0%, rgba(217, 70, 239, 0) 70%);
  filter: blur(60px);
}

/* Animation Classes */
.animate-float-slow {
  animation: float 8s ease-in-out infinite;
}
.animate-spin-slow {
  animation: spin 12s linear infinite;
}
.animate-marquee {
  animation: marquee 25s linear infinite;
}
.animate-marquee-reverse {
  animation: marquee-reverse 35s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #050508;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid #050508;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
