/* Cotton Candy Gradient & Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 105, 180, 0.5), 0 0 40px rgba(135, 206, 250, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 105, 180, 0.8), 0 0 60px rgba(135, 206, 250, 0.6); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

@keyframes neko-wave {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
}

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

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

.shimmer-bg {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

/* Cotton Candy Background */
body {
  background: linear-gradient(135deg, 
    #FFB6D9 0%, 
    #D4A5F5 25%, 
    #A8E6FF 50%, 
    #FFE5F1 75%, 
    #C9D6FF 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
}

/* Neko Pattern Overlay */
.neko-pattern {
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 182, 217, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 230, 255, 0.1) 0%, transparent 50%);
}

/* Glass morphism cards */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(255, 105, 180, 0.15);
}

/* Red CTA with neko charm */
.cta-button {
  background: linear-gradient(135deg, #FF1744 0%, #F50057 100%);
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 30px rgba(255, 23, 68, 0.6);
}

.cta-button::before {
  content: '🐱';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.cta-button:hover::before {
  right: 10px;
  opacity: 1;
  animation: neko-wave 0.5s ease-in-out infinite;
}

/* Slot card styling */
.slot-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slot-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 105, 180, 0.3);
}

.slot-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.slot-card:hover::after {
  left: 100%;
}

/* Badge styles */
.badge-glow {
  box-shadow: 0 0 15px currentColor;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Prose styling for readability */
.prose {
  max-width: 65ch;
  line-height: 1.7;
}

.prose h2 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  color: #FF1744;
}

.prose h3 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-weight: 600;
  color: #F50057;
}

.prose p {
  margin-bottom: 1.25em;
}

.prose ul, .prose ol {
  margin-bottom: 1.25em;
  padding-left: 1.5em;
}

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

.prose strong {
  font-weight: 600;
  color: #FF1744;
}

/* Sticky elements */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 182, 217, 0.3);
}

.sticky-cta-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
}

/* Review cards */
.review-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 250, 0.9));
  border-left: 4px solid #FF1744;
}

/* Winners table */
.win-row {
  background: linear-gradient(90deg, rgba(76, 175, 80, 0.1), transparent);
}

.loss-row {
  background: linear-gradient(90deg, rgba(244, 67, 54, 0.1), transparent);
}

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

/* 3D button effect */
.btn-3d {
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.1s ease;
}

.btn-3d:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Category carousel */
.category-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #FF1744 rgba(255, 255, 255, 0.3);
}

.category-scroll::-webkit-scrollbar {
  height: 8px;
}

.category-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.category-scroll::-webkit-scrollbar-thumb {
  background: #FF1744;
  border-radius: 10px;
}

.category-item {
  scroll-snap-align: start;
}
