
        /* Custom Styles & Animations */
        body {
            background-color: #0f0715;
            color: #e2e8f0;
            overflow-x: hidden;
        }

        /* Glassmorphism */
        .glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Neon Text Glow */
        .text-glow {
            text-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
        }

        /* Floating Animation for Hero Elements */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(to right, #fbbf24, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a0b2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #f59e0b;
            border-radius: 4px;
        }

        /* Ticker Animation */
        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .ticker-wrap {
            overflow: hidden;
            background: rgba(0,0,0,0.3);
        }
        .ticker {
            display: inline-block;
            white-space: nowrap;
            animation: ticker 20s linear infinite;
        }
        
        /* Card Hover Effects */
        .game-card:hover img {
            transform: scale(1.1);
            filter: brightness(1.2);
        }
        .game-card:hover {
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
            border-color: #8b5cf6;
        }
    