body {
  background: #0f1328;
  color: #fff;
  min-height: 100vh;
}

.header-nav {
  background: rgba(15, 19, 40, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(9, 124, 220, 0.1);
}

.mobile-menu {
  background: rgba(10, 10, 11, 0.98);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 40;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Icon glow animations */
@keyframes trophyGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 2px rgba(168, 85, 247, 0.4))
      drop-shadow(0 0 4px rgba(168, 85, 247, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.6))
      drop-shadow(0 0 8px rgba(168, 85, 247, 0.4))
      drop-shadow(0 0 12px rgba(168, 85, 247, 0.2));
  }
}

@keyframes crownGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 2px rgba(234, 179, 8, 0.4))
      drop-shadow(0 0 4px rgba(234, 179, 8, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 4px rgba(234, 179, 8, 0.6))
      drop-shadow(0 0 8px rgba(234, 179, 8, 0.4))
      drop-shadow(0 0 12px rgba(234, 179, 8, 0.2));
  }
}

/* Apply animations to the icons */
.fa-trophy {
  animation: trophyGlow 2s ease-in-out infinite;
}

.fa-crown {
  animation: crownGlow 2s ease-in-out infinite;
}

/* Add hover effect to enhance the glow */
a:hover .fa-trophy {
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.8))
    drop-shadow(0 0 12px rgba(168, 85, 247, 0.4));
}

a:hover .fa-crown {
  filter: drop-shadow(0 0 6px rgba(234, 179, 8, 0.8))
    drop-shadow(0 0 12px rgba(234, 179, 8, 0.4));
}

.nav-islive {
  position: relative;
  margin-left: 12px;
}

.nav-islive a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(83, 252, 24, 0.1);
  border: 1px solid rgba(83, 252, 24, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-islive a:hover {
  background: rgba(83, 252, 24, 0.15);
  border-color: rgba(83, 252, 24, 0.3);
  transform: translateY(-1px);
}

.nav-islive svg {
  width: 16px;
  height: 16px;
  animation: pulse 2s infinite;
}

.nav-islive span {
  color: #53fc18;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Pulse animation for the SVG */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* Glow effect behind the button */
.nav-islive a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(83, 252, 24, 0.2);
  transform: translate(-50%, -50%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-islive a:hover::before {
  opacity: 1;
}

/* Fade in animation when the live indicator appears */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add this class to the live indicator when it becomes visible */
.nav-islive.visible {
  animation: fadeIn 0.3s ease forwards;
}

/* Add these to your existing styles.css */

/* Fade in from bottom animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from left animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale in animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stagger animation classes */
.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-left {
  opacity: 0;
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-scale {
  opacity: 0;
  animation: scaleIn 0.6s ease forwards;
}

/* Animation delay utilities */
.delay-100 {
  animation-delay: 100ms;
}
.delay-200 {
  animation-delay: 200ms;
}
.delay-300 {
  animation-delay: 300ms;
}
.delay-400 {
  animation-delay: 400ms;
}
.delay-500 {
  animation-delay: 500ms;
}
