/* Custom Styles for Pro Gaming Look */
        body {
            background-color: #0B0C10;
            color: #C5C6C7;
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #0B0C10;
        }
        ::-webkit-scrollbar-thumb {
            background: #1F2833;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #45F3FF;
        }

        /* Glassmorphism */
        .glass {
            background: rgba(31, 40, 51, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .glass-card {
            background: linear-gradient(145deg, rgba(31,40,51,0.6) 0%, rgba(11,12,16,0.8) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
        }

        .glass-card:hover {
            border-color: rgba(69, 243, 255, 0.3);
            box-shadow: 0 0 30px rgba(69, 243, 255, 0.1);
            transform: translateY(-5px);
        }

        /* Hero Background with Grid and Glow */
        .hero-pattern {
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(138, 43, 226, 0.15), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(69, 243, 255, 0.15), transparent 25%);
            background-color: #0B0C10;
        }
        
        .grid-bg {
            background-size: 40px 40px;
            background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
        }

        /* Text Gradients */
        .text-gradient {
            background: linear-gradient(to right, #45F3FF, #8A2BE2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Glowing Button */
        .btn-glow {
            position: relative;
        }
        .btn-glow::before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(45deg, #45F3FF, #8A2BE2, #45F3FF);
            z-index: -1;
            border-radius: 8px;
            background-size: 200% 200%;
            animation: gradient-x 3s ease infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .btn-glow:hover::before {
            opacity: 1;
        }

        /* Map Card Reveal */
        .map-card .map-info {
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .map-card:hover .map-info {
            transform: translateY(0);
        }
        .map-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11,12,16,1) 0%, rgba(11,12,16,0.2) 50%, transparent 100%);
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        .map-card:hover::after {
            opacity: 0.95;
        }