* { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, h5, h6, .font-display { font-family: 'Syne', sans-serif; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.nav-menu { transition: transform 0.3s ease-in-out; transform: translateX(-100%); }

/* Grainy gradient hero background */
.hero-bg {
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
}
.hero-bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
@keyframes floatOrb1 {
  0% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(-45%, -55%) scale(1.05); }
  66% { transform: translate(-55%, -45%) scale(0.95); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-5%, 5%) scale(1.1); }
  66% { transform: translate(5%, -5%) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatOrb3 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10%, -10%) scale(0.95); }
  66% { transform: translate(-5%, 5%) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatOrb4 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-10%, -10%) scale(1.1); }
  66% { transform: translate(5%, 5%) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

.hero-bg-orbs .orb-green { position: absolute; width: 1010px; height: 1010px; right: -200px; top: -100px; background: #BDF589; opacity: 0.15; border-radius: 50%; filter: blur(200px); mix-blend-mode: color-dodge; animation: floatOrb2 18s ease-in-out infinite; }
.hero-bg-orbs .orb-blue { position: absolute; width: 1381px; height: 1010px; left: 50%; top: 50%; transform: translate(-50%, -50%); background: #636EB4; opacity: 0.25; border-radius: 50%; filter: blur(200px); mix-blend-mode: color-dodge; animation: floatOrb1 20s ease-in-out infinite; }
.hero-bg-orbs .orb-pink { position: absolute; width: 574px; height: 574px; right: 10%; bottom: 10%; background: #F400F9; opacity: 0.2; border-radius: 50%; filter: blur(180px); mix-blend-mode: color-dodge; animation: floatOrb3 15s ease-in-out infinite; }
.hero-bg-orbs .orb-red { position: absolute; width: 800px; height: 800px; left: -100px; bottom: -100px; background: #E43D3D; opacity: 0.2; border-radius: 50%; filter: blur(180px); mix-blend-mode: color-dodge; animation: floatOrb4 22s ease-in-out infinite; }
.hero-bg-blur { position: absolute; inset: 0; backdrop-filter: blur(150px); background: rgba(0,0,0,0.2); z-index: 2; pointer-events: none; }
.hero-bg-texture { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); opacity: 0.05; z-index: 3; pointer-events: none; }



/* Floating bubble chat elements */
.chat-bubble {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Album card hover lift */
.album-card { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.album-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 60px rgba(85,29,121,0.3); }

/* Counter scroll animation */
.counter-scroll {
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2em;
}
.counter-scroll .counter-inner {
  animation: counterRoll 2s ease-out forwards;
}
@keyframes counterRoll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-90%); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Enhanced directional reveals */
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.85); transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.scale-in.active { opacity: 1; transform: scale(1); }

/* Shimmer Effect */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gradient-shimmer {
  background: linear-gradient(90deg, #ffffff 0%, #e879f9 30%, #ffffff 50%, #e879f9 70%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Pulse Button */
@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(181, 63, 164, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(181, 63, 164, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(181, 63, 164, 0); }
}
.btn-pulse {
  animation: pulse-ring 2.5s ease-out infinite;
}

/* Poster auto scroll */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.poster-track { display: flex; gap: 24px; animation: scrollLeft 60s linear infinite; }
.poster-track:hover { animation-play-state: paused; }

/* Parallax Transitions */
[data-parallax-speed] {
  will-change: transform;
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-scroll-parallax] {
  will-change: transform;
}

