@import "tailwindcss";

@theme {
  --animate-gradient: gradient-animation 15s ease infinite;
  --animate-float: float 6s ease-in-out infinite;
  --animate-float-delayed: float 6s ease-in-out 3s infinite;
  --animate-pulse-glow: pulse-glow 4s ease-in-out infinite;
  --animate-shimmer: shimmer 2.5s linear infinite;
  --animate-heart-float: heart-float 2s ease-out forwards;
  
  @keyframes gradient-animation {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px) translateZ(0); }
    50% { transform: translateY(-10px) translateZ(0); }
  }

  @keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1) translateZ(0); }
    50% { opacity: 0.8; transform: scale(1.05) translateZ(0); }
  }

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

  @keyframes heart-float {
    0% { transform: translateY(0) scale(1) translateZ(0); opacity: 1; }
    100% { transform: translateY(-100px) scale(1.5) translateZ(0); opacity: 0; }
  }

  @keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(20px) translateZ(0); }
    100% { opacity: 1; transform: translateY(0) translateZ(0); }
  }

  @keyframes fade-in-right {
    0% { opacity: 0; transform: translateX(20px) translateZ(0); }
    100% { opacity: 1; transform: translateX(0) translateZ(0); }
  }

  @keyframes pulse-scale {
    0%, 100% { transform: scale(1) translateZ(0); }
    50% { transform: scale(1.05) translateZ(0); }
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-right {
  animation: fade-in-right 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

body {
  background-color: #030005;
  color: #e2e8f0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Cinematic Glassmorphism */
.glass-panel {
  background: rgba(15, 5, 25, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
  background: rgba(20, 8, 35, 0.7);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* VIP Ticket Modal */
.vip-ticket {
  background: linear-gradient(135deg, rgba(30, 10, 50, 0.95), rgba(15, 5, 25, 0.98));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 70, 239, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
  overflow: hidden;
}

.vip-ticket::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
  transform: skewX(-20deg);
}

/* Premium Borahe Button */
.btn-premium {
  background: linear-gradient(135deg, #7e22ce, #c026d3);
  color: white;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(126, 34, 206, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9333ea, #d946ef);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-premium:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(192, 38, 211, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-premium:hover::after {
  opacity: 1;
}

.btn-premium:active {
  transform: translateY(1px) scale(0.98);
}

/* Typography & Effects */
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #e9d5ff, #f0abfc, #e9d5ff);
  background-size: 100% auto;
}

.text-glow-intense {
  text-shadow: 0 0 10px rgba(217, 70, 239, 0.6), 0 0 20px rgba(168, 85, 247, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #030005;
}
::-webkit-scrollbar-thumb {
  background: rgba(126, 34, 206, 0.5);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(192, 38, 211, 0.8);
}

/* Video Container */
.video-container {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.6);
}

.video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
  pointer-events: none;
}
