:root{
                --accent-orange: #F06F32;
            --deep-purple: #421B9B;
            --black: #000000;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, .cinematic-font {
            font-family: 'Cinzel Decorative', serif;
        }

        /* --- Custom Boxed Navigation --- */
        .boxed-nav-item {
            background-color: black;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1.25rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
        }

        .boxed-nav-item:hover {
            border-color: var(--accent-orange);
            box-shadow: 0 0 15px var(--accent-orange);
            color: var(--accent-orange);
        }

        /* --- Scroll Transitions --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Horizontal Image Scroll --- */
        .horizontal-gallery {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 1rem;
            scrollbar-width: none;
        }
        .horizontal-gallery::-webkit-scrollbar { display: none; }
        .gallery-item {
            flex: 0 0 85vw;
            scroll-snap-align: center;
            height: 400px;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }
        @media (min-width: 768px) {
            .gallery-item { flex: 0 0 40vw; }
        }

        /* --- Glowing Accents --- */
        .glow-orange {
            box-shadow: 0 0 20px rgba(240, 111, 50, 0.3);
        }
        .border-glow:hover {
            border-color: var(--accent-orange);
            box-shadow: 0 0 20px rgba(240, 111, 50, 0.4);
        }

        /* --- Waveform Animation --- */
        .waveform {
            display: flex;
            align-items: center;
            gap: 4px;
            height: 40px;
        }
        .bar {
            width: 3px;
            background: var(--accent-orange);
            animation: wave 1s ease-in-out infinite;
        }
        @keyframes wave {
            0%, 100% { height: 10px; }
            50% { height: 40px; }
        }

        /* --- Cart Drawer --- */
        .cart-drawer {
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }
        .cart-drawer.open { transform: translateX(0); }

        .glass-panel {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-left: 1px solid rgba(240, 111, 50, 0.2);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--black); }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent-orange); }

        .active-link {
            color: var(--accent-orange) !important;
            border-color: var(--accent-orange) !important;
            box-shadow: 0 0 10px var(--accent-orange);
        }
