       .desktop-carousel {
            perspective: 1000px;
            height: 500px;
        }
        
        .desktop-slide {
            transform-style: preserve-3d;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            height: 100%;
        }
        
        .desktop-slide.active {
            transform: translateX(0) scale(1);
            z-index: 10;
            opacity: 1;
        }
        
        .desktop-slide.next {
            transform: translateX(30%) scale(0.9);
            z-index: 5;
            opacity: 0.8;
        }
        
        .desktop-slide.prev {
            transform: translateX(-30%) scale(0.9);
            z-index: 5;
            opacity: 0.8;
        }
        
        .desktop-slide.hidden {
            transform: translateX(100%) scale(0.8);
            opacity: 0;
            z-index: 1;
        }
        
        /* Mobile carousel */
        .mobile-carousel {
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
        }
        
        .mobile-slide {
            scroll-snap-align: start;
            flex: 0 0 100%;
        }
        
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
        }
        
        .featured-game {
            animation: pulse 4s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        /* Mobile menu */
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .mobile-menu.open {
            max-height: 500px;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #e50914;
            border-radius: 4px;
        }
        
        /* Dark overlay for mobile carousel content */
        .mobile-slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
            padding: 1.5rem;
            border-bottom-left-radius: 1rem;
            border-bottom-right-radius: 1rem;
        }
        
        /* Game grid for mobile */
        @media (max-width: 768px) {
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }