       @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Spotlight Effects */
        .spotlight {
            position: fixed;
            pointer-events: none;
            z-index: 1;
            mix-blend-mode: screen;
        }
        
        .spotlight-1 {
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 0, 150, 0.15) 0%, transparent 50%);
            animation: spotlight-move-1 20s ease-in-out infinite;
        }
        
        .spotlight-2 {
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
            animation: spotlight-move-2 25s ease-in-out infinite reverse;
        }
        
        .spotlight-3 {
            bottom: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 70%, rgba(255, 255, 0, 0.08) 0%, transparent 50%);
            animation: spotlight-move-3 30s ease-in-out infinite;
        }
        
        .spotlight-4 {
            bottom: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 70% 70%, rgba(150, 0, 255, 0.12) 0%, transparent 50%);
            animation: spotlight-move-4 22s ease-in-out infinite reverse;
        }
        
        @keyframes spotlight-move-1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(10%, 5%) rotate(90deg); }
            50% { transform: translate(-5%, 10%) rotate(180deg); }
            75% { transform: translate(-10%, -5%) rotate(270deg); }
        }
        
        @keyframes spotlight-move-2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-8%, 12%) rotate(120deg); }
            66% { transform: translate(12%, -8%) rotate(240deg); }
        }
        
        @keyframes spotlight-move-3 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(15%, -15%) rotate(180deg); }
        }
        
        @keyframes spotlight-move-4 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-12%, 8%) rotate(90deg); }
            50% { transform: translate(8%, -12%) rotate(180deg); }
            75% { transform: translate(12%, 12%) rotate(270deg); }
        }
        
        /* Home Button */
        .home-btn {
            position: fixed;
            top: 50%;
            left: 20px;
            transform: translateY(-50%);
            z-index: 1000;
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(255, 0, 110, 0.3);
            animation: pulse-glow 3s infinite;
        }
        
        .home-btn:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 12px 40px rgba(255, 0, 110, 0.5);
        }
        
        .home-btn svg {
            width: 24px;
            height: 24px;
            color: white;
        }
        
        /* TV Logo */
        .tv-logo {
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        .tv-logo::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            border-radius: 15px;
            opacity: 0.2;
            filter: blur(10px);
            z-index: -1;
            animation: logo-glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes logo-glow {
            from { opacity: 0.2; transform: scale(1); }
            to { opacity: 0.4; transform: scale(1.05); }
        }
        
        /* Enhanced Login Styles */
        .login-container {
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .login-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float-icon 15s linear infinite;
        }
        
        @keyframes float-icon {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        .input-field {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .input-field:focus {
            border-color: #ff006e;
            box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .login-btn {
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            position: relative;
            overflow: hidden;
        }
        
        .login-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .login-btn:hover::before {
            left: 100%;
        }
        
        /* Video Background for Movie Detail */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.8) 0%,
                rgba(0, 0, 0, 0.6) 25%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.6) 75%,
                rgba(0, 0, 0, 0.8) 100%
            );
        }
        
        /* Enhanced Movie Cards */
        .movie-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .movie-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(255, 0, 110, 0.4);
            border-color: rgba(255, 0, 110, 0.3);
        }
        
        .sidebar-transition {
            transition: transform 0.3s ease-in-out;
        }
        
        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .movie-backdrop {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .rating-stars {
            color: #fbbf24;
        }
        
        /* Advanced Animations and Effects */
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-100px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(100px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
            50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.4); }
        }
        
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        
        @keyframes particle-float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }
        
        .animate-slide-in-left {
            animation: slideInLeft 1s ease-out;
        }
        
        .animate-slide-in-right {
            animation: slideInRight 1s ease-out 0.3s both;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, #8B5CF6, #3B82F6);
            border-radius: 50%;
            animation: particle-float linear infinite;
        }
        
        .particle-1 {
            left: 10%;
            animation-duration: 15s;
            animation-delay: 0s;
        }
        
        .particle-2 {
            left: 30%;
            animation-duration: 12s;
            animation-delay: 2s;
            width: 6px;
            height: 6px;
        }
        
        .particle-3 {
            left: 50%;
            animation-duration: 18s;
            animation-delay: 4s;
        }
        
        .particle-4 {
            left: 70%;
            animation-duration: 14s;
            animation-delay: 1s;
            width: 8px;
            height: 8px;
        }
        
        .particle-5 {
            left: 90%;
            animation-duration: 16s;
            animation-delay: 3s;
        }
        
        .hero-dot.active {
            background: linear-gradient(45deg, #8B5CF6, #3B82F6);
            animation: pulse-glow 2s infinite;
        }
        
        .shimmer-effect {
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
        }
        
        /* Hover Effects */
        .movie-card {
            position: relative;
            overflow: hidden;
        }
        
        .movie-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
            z-index: 1;
        }
        
        .movie-card:hover::before {
            left: 100%;
        }
        
        /* Glass Morphism Effects */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        /* Neon Glow Effects */
        .neon-glow {
            text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
        }
        
        .neon-border {
            border: 2px solid;
            border-image: linear-gradient(45deg, #8B5CF6, #3B82F6, #8B5CF6) 1;
            animation: pulse-glow 3s infinite;
        }
        
        /* 3D Transform Effects */
        .transform-3d {
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .rotate-y {
            transform: rotateY(15deg);
            transition: transform 0.5s ease;
        }
        
        .rotate-y:hover {
            transform: rotateY(0deg) scale(1.05);
        }
        
        /* Loading Animation */
        @keyframes loading-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .loading-animation {
            animation: loading-pulse 1.5s infinite;
        }
        
        /* Gradient Text Animation */
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .animated-gradient-text {
            background: linear-gradient(-45deg, #8B5CF6, #3B82F6, #06B6D4, #8B5CF6);
            background-size: 400% 400%;
            animation: gradient-shift 3s ease infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }