@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-dark-bg: #070B19;
  --color-card-bg: rgba(28, 37, 65, 0.4);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-gold: #D4AF37;
  --color-gold-glow: rgba(212, 175, 55, 0.2);
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-dark-bg);
  color: #F8FAFC;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Glassmorphism styling */
.glass-panel {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel-hover:hover {
  background: rgba(28, 37, 65, 0.6);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px 0 var(--color-gold-glow);
  transform: translateY(-4px);
}

/* Gold Gradient Text */
.text-gold-gradient {
  background: linear-gradient(135deg, #F3C63F 0%, #D4AF37 50%, #F5E0A9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Bright Blue-to-Cyan Gradient Text */
.text-cyan-gradient {
  background: linear-gradient(135deg, #3A86FF 0%, #00F5D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

/* Glowing button hover effect */
.btn-glow:hover {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transform: scale(1.02);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #070B19;
}
::-webkit-scrollbar-thumb {
  background: #1C2541;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

/* Reveal transition on scroll */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
