/* Enhanced Styles for Animations and Mobile Responsiveness */

/* Enhanced Logo Styles */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.logo-scrolled .logo-icon {
  transform: scale(0.9);
}
.logo-icon {
  transition: all 0.3s ease;
}

/* Scroll Animations */
[data-animate] {
  will-change: transform, opacity;
}
.slide-in-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.slide-in-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.scale-in {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Custom Cursor (Desktop only) */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 31, 31, 0.8);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}
.custom-cursor.cursor-hover {
  width: 40px;
  height: 40px;
  border-color: rgba(0, 255, 136, 0.8);
}

/* Enhanced Hover Effects */
[data-tilt] {
  transition: transform 0.3s ease;
}

/* Parallax Elements */
[data-parallax] {
  will-change: transform;
}

/* Navbar scroll effect */
.navbar.scrolled,
.navbar-landing.scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
  h1 {
    font-size: 2rem !important;
  }
  h2 {
    font-size: 1.75rem !important;
  }
  .glass-panel {
    padding: 1.5rem !important;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .coin-container {
    height: 300px !important;
  }
  .coin-inner {
    width: 200px !important;
    height: 200px !important;
  }
  .orbit-ring {
    display: none;
  }
  /* Responsive text sizes */
  .text-6xl, .text-7xl {
    font-size: 2.5rem !important;
  }
  .text-5xl {
    font-size: 2rem !important;
  }
  .text-4xl {
    font-size: 1.75rem !important;
  }
  /* Responsive spacing */
  section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-24 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-20 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

/* Shimmer Animation */
@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}
.shimmer {
  animation: shimmer 2s infinite;
}

/* Enhanced button hover effects */
button[data-tilt]:hover,
a[data-tilt]:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale3d(1.02, 1.02, 1.02);
}

/* Smooth transitions for all interactive elements */
a, button, .glass-panel {
  transition: all 0.3s ease;
}

/* Enhanced focus states for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(255, 31, 31, 0.8);
  outline-offset: 2px;
}

