@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,700;0,900;1,400;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --pink-primary: #ec4899;
  --pink-light: #fbcfe8;
  --pink-dark: #9d174d;
  --orange-primary: #f97316;
  --orange-light: #fed7aa;
  --orange-dark: #c2410c;
  --bg-dark: #0a0407;
  --bg-card: rgba(28, 8, 18, 0.75);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: #f3f4f6;
  overflow-x: hidden;
}

::selection {
  background: rgba(249, 115, 22, 0.4);
  color: #ffffff;
}

.font-cinzel { font-family: 'Cinzel', serif; }
.font-playfair { font-family: 'Playfair Display', serif; }
.font-outfit { font-family: 'Outfit', sans-serif; }

/* Scrollbars */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0407; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #f97316, #ec4899, #9d174d);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #fb923c, #f472b6, #be185d);
}

/* Background Gradients */
.bg-bollywood-radial {
  background: radial-gradient(circle at 50% 0%,
    rgba(236, 72, 153, 0.22) 0%,
    rgba(249, 115, 22, 0.12) 35%,
    rgba(10, 4, 7, 1) 90%);
}

/* =========================================================================
   SPLASH SCREEN & FADE IN TRANSITION
   ========================================================================= */
#splash-screen {
  background-color: #0a0407;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.85s;
}

#splash-screen.splash-hidden {
  opacity: 0;
  transform: scale(1.06);
  visibility: hidden;
  pointer-events: none;
}

.hero-fade-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   HERO VIDEO EMBED PLAYER FRAME
   ========================================================================= */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-video-backdrop {
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.4) 0%, rgba(249, 115, 22, 0.25) 50%, transparent 75%);
  border-radius: 2rem;
  filter: blur(25px);
  pointer-events: none;
  z-index: 0;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1.5px solid rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 45px rgba(249, 115, 22, 0.35), 0 20px 50px rgba(0,0,0,0.9), inset 0 0 20px rgba(249, 115, 22, 0.15);
  background: #000;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video-frame:hover {
  border-color: rgba(236, 72, 153, 0.9);
  box-shadow: 0 0 55px rgba(236, 72, 153, 0.5), 0 0 80px rgba(249, 115, 22, 0.3), 0 25px 60px rgba(0,0,0,0.95);
  transform: translateY(-2px);
}

.hero-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #000;
  transition: transform 0.5s ease;
}

.hero-video-frame:hover img {
  transform: scale(1.04);
}

/* Glassmorphism Luxury Cards */
.luxury-glass {
  background: linear-gradient(135deg, rgba(32, 10, 22, 0.8) 0%, rgba(18, 5, 12, 0.9) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(236, 72, 153, 0.18);
  box-shadow: 0 16px 40px rgba(0,0,0,0.65), inset 0 1px 1px rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-glass:hover {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 24px 50px rgba(0,0,0,0.8), 0 0 25px rgba(249,115,22,0.15), inset 0 1px 1px rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.luxury-glass-gold {
  background: linear-gradient(135deg, rgba(42, 14, 26, 0.88) 0%, rgba(20, 6, 14, 0.96) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(249, 115, 22, 0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.75), 0 0 24px rgba(236,72,153,0.15);
}

/* Text Gradients */
.text-gradient-gold {
  background: linear-gradient(135deg, #fed7aa 0%, #fb923c 30%, #f97316 60%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-ruby {
  background: linear-gradient(135deg, #fce7f3 0%, #f472b6 40%, #ec4899 75%, #fbcfe8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cinematic {
  background: linear-gradient(135deg, #ffffff 0%, #fb923c 25%, #ec4899 65%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================================
   SHINNING LOGO EFFECT (Grand Glowing 3D Metallic Effect)
   ========================================================================= */
@keyframes logoShineGlow {
  0%, 100% {
    filter: drop-shadow(0 0 35px rgba(236, 72, 153, 0.65)) drop-shadow(0 0 70px rgba(249, 115, 22, 0.45));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 65px rgba(236, 72, 153, 1)) drop-shadow(0 0 110px rgba(249, 115, 22, 0.8)) drop-shadow(0 0 160px rgba(255, 255, 255, 0.5));
    transform: scale(1.03);
  }
}

.logo-shining-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-shining-effect {
  animation: logoShineGlow 4s ease-in-out infinite;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.logo-shining-wrapper:hover .logo-shining-effect {
  filter: drop-shadow(0 0 75px rgba(236, 72, 153, 1)) drop-shadow(0 0 130px rgba(249, 115, 22, 0.95)) drop-shadow(0 0 180px rgba(255, 255, 255, 0.8));
  transform: scale(1.05);
}

.logo-ambient-aura {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.45) 0%, rgba(249, 115, 22, 0.3) 45%, transparent 75%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: floatSlow 6s ease-in-out infinite;
}

/* Shimmer Buttons */
@keyframes pinkOrangeShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.gold-shimmer-btn {
  background: linear-gradient(90deg, #c2410c 0%, #f97316 20%, #fbbf24 40%, #ec4899 60%, #f97316 80%, #c2410c 100%);
  background-size: 200% 100%;
  animation: pinkOrangeShimmer 4s linear infinite;
  color: #fff !important;
}

.gold-shimmer-btn:hover {
  animation-duration: 1.5s;
  box-shadow: 0 0 25px rgba(249,115,22,0.5), 0 0 50px rgba(236,72,153,0.25);
}

/* =========================================================================
   WEBSERIES.PNG GLOWING FRAME
   ========================================================================= */
.webseries-glowing-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem;
}

.webseries-glowing-backdrop {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.35) 0%, rgba(236, 72, 153, 0.2) 50%, transparent 80%);
  border-radius: 2.5rem;
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.webseries-frame-container {
  position: relative;
  width: 100%;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1.5px solid rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 50px rgba(249, 115, 22, 0.35), 0 25px 60px rgba(0,0,0,0.95), inset 0 0 25px rgba(249, 115, 22, 0.12);
  background: #000;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.webseries-frame-container:hover {
  border-color: rgba(249, 115, 22, 0.95);
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.5), 0 0 90px rgba(236, 72, 153, 0.25), 0 30px 70px rgba(0,0,0,0.98);
  transform: translateY(-2px);
}

.webseries-frame-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================================================================
   TV SHOWS 4x2 GRID CARDS
   ========================================================================= */
.tv-show-card {
  background: linear-gradient(135deg, rgba(28, 8, 18, 0.85) 0%, rgba(12, 3, 8, 0.95) 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(236, 72, 153, 0.22);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tv-show-card:hover {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 20px 45px rgba(0,0,0,0.9), 0 0 30px rgba(249,115,22,0.25);
  transform: translateY(-4px);
}

.tv-show-card .tv-img-frame {
  width: 100%;
  min-height: 180px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}

.tv-show-card .tv-img-frame img {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.tv-show-card:hover .tv-img-frame img {
  transform: scale(1.06);
}

/* =========================================================================
   SPORTS EVENTS SLIDE PANEL & GLOWING ORANGE BACKDROP
   ========================================================================= */
.sports-glowing-wrapper {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 1.5rem;
}

.sports-glowing-backdrop {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.35) 0%, rgba(249, 115, 22, 0.12) 50%, transparent 80%);
  border-radius: 2.5rem;
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.sports-slider-container {
  position: relative;
  width: 100%;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1.5px solid rgba(249, 115, 22, 0.65);
  box-shadow: 0 0 50px rgba(249, 115, 22, 0.35), 0 25px 60px rgba(0,0,0,0.95), inset 0 0 25px rgba(249, 115, 22, 0.12);
  background: #000;
  z-index: 1;
}

.sports-slide-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.sports-slide-item.active {
  display: block;
  opacity: 1;
}

.sports-slide-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 5, 10, 0.88);
  border: 1.5px solid rgba(249, 115, 22, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.8), 0 0 15px rgba(249,115,22,0.3);
}

.slider-nav-btn:hover {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  border-color: #fff;
  box-shadow: 0 0 25px rgba(249,115,22,0.8);
  transform: scale(1.1);
}

/* Marquees */
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-track-reverse {
  display: flex;
  width: max-content;
  animation: marqueeScrollReverse 40s linear infinite;
}

.marquee-track-reverse:hover { animation-play-state: paused; }

/* Modal Lightbox */
.modal-overlay {
  background: rgba(6, 2, 4, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Cursor Spotlight */
#spotlight-cursor {
  pointer-events: none;
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, rgba(236,72,153,0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Country Badges */
.country-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(249,115,22,0.15);
  transition: all 0.3s ease;
}

.country-badge:hover {
  background: rgba(249,115,22,0.15);
  border-color: rgba(236,72,153,0.6);
  transform: translateY(-2px) scale(1.04);
}

/* Tag Pills */
.pill-tag {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #fb923c;
}

.pill-pink-tag {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.25);
  color: #f472b6;
}

/* Animated Float */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: floatSlow 5s ease-in-out infinite;
}

/* Music Video Play Button & Thumbnail */
.music-thumbnail-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #000;
}

.music-thumbnail-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.music-thumbnail-frame:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.music-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10,3,6,0.5) 0%, rgba(236,72,153,0.2) 100%);
  cursor: pointer;
  transition: background 0.3s ease;
}

.music-play-overlay:hover {
  background: linear-gradient(135deg, rgba(10,3,6,0.3) 0%, rgba(249,115,22,0.25) 100%);
}

.play-ring-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(249,115,22,0.6), 0 0 50px rgba(236,72,153,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-play-overlay:hover .play-ring-btn {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(249,115,22,0.8), 0 0 70px rgba(236,72,153,0.5);
}

@media (max-width: 768px) {
  #spotlight-cursor { display: none; }
}
