        :root {
            --glossy-red: #e60000;
            --deep-red: #8b0000;
            --charcoal: #0a0a0a;
            --soft-gray: #888888;
        }

        body {
            background-color: #000000;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, .brand-font {
            font-family: 'Cinzel', serif;
            letter-spacing: 0.1em;
        }

        .cursive-serif {
            font-family: 'Cormorant+Garamond', serif;
            font-style: italic;
        }

        .mono {
            font-family: 'JetBrains Mono', monospace;
        }

        /* Premium Glossy Red Effect */
        .glossy-red-text {
            color: var(--glossy-red);
            background: linear-gradient(to bottom, #ff3333 0%, #bd0000 50%, #4a0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 8px rgba(230, 0, 0, 0.4));
        }

        .glossy-button {
            border: 1px solid rgba(230, 0, 0, 0.5);
            background: linear-gradient(135deg, #000 0%, #1a0000 100%);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .glossy-button:hover {
            border-color: var(--glossy-red);
            box-shadow: 0 0 30px rgba(230, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        /* Animations */
        @keyframes lineGrow {
            0% { width: 0; opacity: 0; }
            100% { width: 100%; opacity: 1; }
        }

        .animate-line {
            animation: lineGrow 2s forwards ease-in-out;
        }

        .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Layout Fixes */
        .page-container {
            min-height: 100vh;
            width: 100%;
        }

        .glass-card {
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
        }

        .glass-card:hover {
            border-color: rgba(230, 0, 0, 0.3);
            background: rgba(20, 5, 5, 0.9);
        }

        /* Cart Badge */
        #cart-count {
            font-size: 10px;
            background: var(--glossy-red);
            color: white;
            padding: 2px 6px;
            border-radius: 10px;
            position: absolute;
            top: -8px;
            right: -10px;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 3px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: var(--deep-red); }
