 /* Base styling for the futuristic dark theme */
        body {
            background-color: #1A1A1A; /* Charcoal dark shade */
            color: #FFFFFF;
            font-family: 'Lato', sans-serif;
            overflow-x: hidden;
        }
        
        /* Neon text glow utility */
        .text-glow-blue {
            text-shadow: 0 0 5px #00E5FF;
        }
        .text-glow-cyan {
            text-shadow: 0 0 5px #1DE9B6;
        }

        /* Glassmorphism Panel Style */
        .glass-panel {
            background-color: rgba(255, 255, 255, 0.08); /* Very light white tint */
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem; /* Rounded cards */
        }

        /* Hero Background - Abstract lines and shapes */
        #hero {
            background: linear-gradient(135deg, #0A1A2F 0%, #1A1A1A 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }
        
        /* Floating shape animation */
        @keyframes floating {
            0% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
            50% { transform: translateY(-20px) rotate(5deg); opacity: 0.8; }
            100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
        }
        .floating-shape {
            animation: floating 15s ease-in-out infinite;
        }

        /* Product Carousel Styling */
        #product-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

    