* {
  cursor: none !important;
}

#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #135bec;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

#cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(19, 91, 236, 0.4);
  background-color: rgba(19, 91, 236, 0.05);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

#cursor-aura.hover {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#cursor-dot.hover {
  background-color: #d4af37;
  width: 4px;
  height: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.frosted {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.4);
  border-radius: 9999px !important;
  color: #1a1a24 !important;

  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.03),
    inset 0 2px 2px rgba(255, 255, 255, 1);

  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.05),
    inset 0 2px 4px rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.gold-glow {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.18);
}

.pearlescent {
  background-color: #f8f8f5;
  background-image:
    radial-gradient(at 0% 0%,
      hsla(225, 39%, 30%, 0.04) 0,
      transparent 50%),
    radial-gradient(at 100% 0%, hsla(45, 60%, 92%, 1) 0, transparent 50%),
    radial-gradient(at 50% 100%, hsla(0, 0%, 100%, 1) 0, transparent 50%);
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #135bec;
  border-radius: 3px;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #135bec;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-ping {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

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