/* Custom CSS for Hotloot Casino Theme */

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.6);
  }
}

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

@keyframes tilt {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  75% {
    transform: rotate(-1deg);
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

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

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

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

.animate-tilt {
  animation: tilt 2s ease-in-out infinite;
}

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

/* Custom Gradient Backgrounds */
.bg-skull-gradient {
  background: linear-gradient(135deg, #ff6b35 0%, #ff1493 100%);
}

.bg-fire-gradient {
  background: linear-gradient(45deg, #ff4500 0%, #ff6347 50%, #ffa500 100%);
}

/* Skull and Skeleton Theme Elements */
.skull-shadow {
  filter: drop-shadow(0 4px 8px rgba(255, 20, 147, 0.3));
}

.skeleton-border {
  border: 2px solid #ff6b35;
  border-image: linear-gradient(45deg, #ff6b35, #ff1493) 1;
}

/* Custom Shapes */
.flame-shape {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

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

.prose p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.prose h2 {
  color: #ff6b35;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  color: #ff1493;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Custom Button Styles */
.btn-skull {
  background: linear-gradient(135deg, #ff6b35 0%, #ff1493 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-skull:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.btn-skull::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-skull:hover::before {
  left: 100%;
}

/* Sticky Sidebar */
.sidebar-sticky {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  background: rgba(255, 107, 53, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0 12px 12px 0;
  padding: 1rem 0.5rem;
}

@media (max-width: 1024px) {
  .sidebar-sticky {
    display: none;
  }
}

/* Game Grid Hover Effects */
.game-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.game-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 20, 147, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover::after {
  opacity: 1;
}

/* Bonus Calculator Styling */
.calculator-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ff6b35;
  border-radius: 8px;
  color: white;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.calculator-input:focus {
  outline: none;
  border-color: #ff1493;
  box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2);
}

/* Trustpilot Badge Styling */
.trustpilot-badge {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #ff6b35;
}

/* Payment Methods Strip */
.payment-strip {
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }

  .mobile-full {
    width: 100%;
  }
}

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

/* Focus States for Accessibility */
.focus-visible:focus {
  outline: 2px solid #ff1493;
  outline-offset: 2px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #ff6b35 0%, #ff1493 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}
