/* ChampWins Custom Styles */

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

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
  }
}

/* Animation Classes */
.parallax-float {
  animation: parallax-float 3s ease-in-out infinite;
}

.marquee {
  animation: marquee 20s linear infinite;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Prose Styling */
.prose {
  max-width: none;
  line-height: 1.6;
}

.prose h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.prose h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.prose p {
  margin-bottom: 1rem;
  color: #4b5563;
}

.prose ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

/* Custom Utilities */
.bg-gradient-football {
  background: linear-gradient(135deg, #2228c5 0%, #045a24 100%);
}

.bg-gradient-casino {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Breakpoints */
@media (max-width: 1023px) {
  .mobile-menu-open {
    overflow: hidden;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.focus-ring:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Sidebar Styles */
.sidebar-fixed {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 40;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.sidebar-fixed.open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .sidebar-fixed {
    transform: translateX(0);
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
  }
}
