        body {
            font-family: 'Plus+Jakarta+Sans', sans-serif;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .glass {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .gradient-text {
            background: linear-gradient(135deg, #1e3a8a 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-bg {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&q=80&w=2000');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .card-zoom:hover img {
            transform: scale(1.1);
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translate(0, 0px); }
            50% { transform: translate(0, -15px); }
            100% { transform: translate(0, 0px); }
        }

        .hide-scrollbar::-webkit-scrollbar { display: none; }
        
        .modal {
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        #gameCanvas {
            background: #87CEEB;
            display: block;
            margin: 0 auto;
            border-radius: 12px;
            max-width: 100%;
        }
        .marquee {
        display: flex;
        width: max-content;
        animation: marqueeAnim 20s linear infinite;
    }

    .marquee:hover {
        animation-play-state: paused; /* pause on hover */
    }

    @keyframes marqueeAnim {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }