
        :root {
            --primary: #D8A45A;
            --bg: #020202;
        }

        /* Ambient Trail Spotlight */
        .cur-glow {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            z-index: 1000000;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(216, 164, 90, 0.38), rgba(216, 164, 90, 0.04) 42%, transparent 68%);
            mix-blend-mode: screen;
            transition: opacity 0.6s, width 0.5s ease, height 0.5s ease;
        }

        .cur-glow.on { opacity: 1; }
        .cur-glow.hot {
            width: 520px;
            height: 520px;
            background: radial-gradient(circle, rgba(216, 164, 90, 0.25), rgba(216, 164, 90, 0.06) 42%, transparent 68%);
        }

        body {
            background-color: var(--bg);
            color: white;
            cursor: none;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Ambient Background */
        .ambient-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(circle at 15% 30%, rgba(216, 164, 90, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 85% 70%, rgba(255, 138, 29, 0.02) 0%, transparent 40%);
        }

        @media (pointer: coarse) {
            body { cursor: auto; }
            #cursor-dot, #cursor-outline, .cur-glow { display: none !important; }
        }

        /* Lenis Smooth Scroll */
        html.lenis, html.lenis body { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto !important; }
        .lenis.lenis-stopped { overflow: hidden; }

        /* Custom Physics Cursor */
        #cursor-dot {
            position: fixed;
            top: 0;
            left: 0;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1000000;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
        }

        #cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(216, 164, 90, 0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
        }

        .cursor-hover #cursor-outline {
            width: 80px;
            height: 80px;
            background: rgba(216, 164, 90, 0.1);
            border-color: transparent;
        }

        /* Typography & Utilities */
        .outline-text {
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
        }

        ::-webkit-scrollbar { display: none; }

        /* Header Glass */
        .glass-nav {
            background: rgba(2, 2, 2, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Premium Accordion Styling */
        details.faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: border-color 0.4s ease;
        }
        details.faq-item:hover {
            border-color: var(--primary);
        }
        details.faq-item summary {
            list-style: none;
            cursor: pointer;
            position: relative;
            outline: none;
        }
        details.faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-icon {
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
        }
        details.faq-item[open] .faq-icon {
            transform: rotate(45deg);
            color: var(--primary);
        }
        details.faq-item[open] summary h3 {
            color: white;
        }
        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .faq-answer > div {
            overflow: hidden;
        }
        details.faq-item[open] .faq-answer {
            grid-template-rows: 1fr;
        }
        .nav-category {
            scroll-margin-top: 140px;
        }
        .sticky-category-nav::-webkit-scrollbar {
            display: none;
        }
        
         /*header class */
        .glass2 {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

/* Footer number */
.footer-number {
    display: inline-block;
    position: relative;
    top: -0.14em;
}
