/* Nekoluck Theme - Custom Animations & Styles */

:root {
  --neko-primary: #ff6b9d;
  --neko-secondary: #c44569;
  --neko-accent: #ffa502;
  --neko-dark: #2d3436;
  --neko-light: #fff5f7;
}

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

@keyframes pulsate {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

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

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes neko-paw {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.1); }
  75% { transform: rotate(10deg) scale(1.1); }
}

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

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

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

/* Tilt Effect */
.tilt-card {
  transition: transform 0.3s ease;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Floating Elements */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Pulsating Elements */
.pulsate-animation {
  animation: pulsate 2s ease-in-out infinite;
}

/* Slide In Animation */
.slide-in {
  animation: slideInRight 0.6s ease-out;
}

/* Fade In Up */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Wiggle Animation */
.wiggle-animation {
  animation: wiggle 1s ease-in-out infinite;
}

/* Gradient Background Animation */
.gradient-animated {
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}

/* Neko Paw Animation */
.neko-paw-animation {
  animation: neko-paw 2s ease-in-out infinite;
}

/* Shimmer Effect */
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Prose Styling */
.prose {
  max-width: 65ch;
  color: #374151;
  line-height: 1.75;
}

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

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

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

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

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

.prose a {
  color: var(--neko-primary);
  text-decoration: underline;
  font-weight: 500;
}

.prose a:hover {
  color: var(--neko-secondary);
}

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

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.prose th {
  background: #f9fafb;
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #e5e7eb;
}

.prose td {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neko-primary), var(--neko-secondary));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neko-secondary);
}

/* Glass Morphism */
.glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Glow Effect */
.glow-border {
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.6);
}

/* Category Button 3D Effect */
.btn-3d {
  transform: translateZ(0);
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 var(--neko-secondary), 0 8px 15px rgba(0,0,0,0.2);
}

.btn-3d:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--neko-secondary), 0 4px 10px rgba(0,0,0,0.2);
}

.btn-3d:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--neko-secondary), 0 2px 5px rgba(0,0,0,0.2);
}

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

.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

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

.slot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Badge Styles */
.badge-jackpot {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.badge-high-rtp {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.badge-bonus-buy {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Countdown Animation */
.countdown-text {
  transition: opacity 0.5s ease;
}

.countdown-text.fade-out {
  opacity: 0;
}

.countdown-text.fade-in {
  opacity: 1;
}

/* Mobile Menu - Simplified */

/* Neko Cat Decorations */
.neko-pattern {
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 165, 2, 0.1) 0%, transparent 50%);
}

/* Sticky CTA Banner */
.sticky-cta {
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

/* Responsive Typography */
@media (max-width: 768px) {
  .prose h2 {
    font-size: 1.5rem;
  }
  
  .prose h3 {
    font-size: 1.25rem;
  }
}
