/* SnFlix - Premium Streaming Styles */

/* --- Base Styles --- */
body { 
    background-color: #030014; 
    color: #f3f4f6; 
    overflow-x: hidden; 
}
svg {
    max-width: 40px;
    max-height: 40px;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { 
    width: 6px; 
}
::-webkit-scrollbar-track { 
    background: #030014; 
}
::-webkit-scrollbar-thumb { 
    background: #4c1d95; 
    border-radius: 10px; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #6d28d9; 
}

/* --- Glassmorphism Utilities --- */
.glass-panel {
    background: rgba(17, 25, 40, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-nav {
    background: rgba(3, 0, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* --- Text Effects --- */
.text-glow {
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

/* --- Swiper Overrides --- */
.swiper { 
    overflow: visible !important; 
}
.swiper-wrapper { 
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important; 
}

/* --- Card Hover Effect (Antigravity) --- */
.antigravity-card {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.antigravity-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.3);
    z-index: 20;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { 
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); 
}

/* --- Mobile Menu --- */
#mobileMenu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
#mobileMenu.hidden-menu {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}
#mobileMenu.visible-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* --- New Utilities for 123chill Layout --- */
.shadow-glass {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

