/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.font-display {
  font-family: "Playfair Display", serif;
}

/* Components */

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  z-index: 9999;
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #F59E0B;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
  transform: translate(-50%, -50%);
}

@media (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 4px;
  background: linear-gradient(90deg, #F59E0B, #FCD34D);
  transition: width 0.1s;
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px);
}

/* Parallax Background */
.parallax-bg {
  transition: transform 0.1s ease-out;
}

/* Premium Card Component */
.premium-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card::before {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  content: "";
  background: linear-gradient(45deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: all 0.8s ease;
}

.premium-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-12px) scale(1.02);
}

.premium-card:hover::before {
  transform: rotate(45deg) translateX(100%);
}

/* Animated Counter */
.counter {
  font-variant-numeric: tabular-nums;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease infinite;
}

/* Ripple Animation Effect */
.ripple {
  position: absolute;
  background: rgba(245, 158, 11, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
}

/* Reveal on Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Floating Particles */
.particle {
  position: absolute;
  background: rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  animation: float-particle 15s infinite;
}

/* Keyframes */

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

@keyframes ripple-effect {
  to {
    opacity: 0;
    transform: scale(4);
  }
}

@keyframes float-particle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -50px) scale(1.2);
  }

  66% {
    transform: translate(-50px, 50px) scale(0.8);
  }
}