 /* Custom Styles for Bold Aesthetic */
        body {
            background-color: #000000;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6, .btn-text, .nav-link {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Selection Color */
        ::selection {
            background-color: #FF1F3D;
            color: white;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #FF1F3D;
        }

        /* Utilities */
        .text-outline {
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
            color: transparent;
        }
        .text-outline-hover:hover {
            -webkit-text-stroke: 0px;
            color: #FF1F3D;
        }

        .btn-glitch {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
        }
        
        .btn-glitch:hover {
            box-shadow: 0 0 20px rgba(255, 31, 61, 0.6);
            transform: translateY(-2px);
        }

        .product-card:hover .product-img {
            transform: scale(1.1);
        }
        
        .nav-blur {
            backdrop-filter: blur(12px);
            background: rgba(0, 0, 0, 0.85);
        }

        /* Marquee Container */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
        }
