:root {
            --bg-dark: #080808;
            --accent: #6366f1;
        }
        body {
            background-color: var(--bg-dark);
            color: white;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            cursor: none;
            -webkit-font-smoothing: antialiased;
        }
        @media (hover: none) and (pointer: coarse) {
            body { cursor: auto; }
            .custom-cursor, .cursor-follower { display: none !important; }
        }

        .serif-italic {
            font-family: 'Playfair Display', serif;
            font-style: italic;
        }
        .text-huge {
            font-size: clamp(2.8rem, 12vw, 9rem);
            line-height: 0.85;
            letter-spacing: -0.04em;
            position: relative;
            z-index: 10;
        }
        #venom-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.5; /* Slightly increased overall opacity */
            will-change: transform;
        }
        /* Custom Cursor */
        .custom-cursor {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.04s linear;
            top: 0; left: 0;
        }
        .cursor-follower {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.12s ease-out, width 0.3s, height 0.3s;
            top: 0; left: 0;
        }
        /* Button Styling */
        .btn-magnetic {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.25rem 2.5rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(10px);
            width: 100%;
        }
        @media (min-width: 640px) {
            .btn-magnetic { width: auto; }
        }
        .btn-magnetic:hover {
            border-color: white;
            color: black;
            background: white;
        }

        .nav-link {
            position: relative;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        /* Mobile Menu */
        #mobile-menu {
            transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
            transform: translateY(-100%);
        }
        #mobile-menu.active {
            transform: translateY(0);
        }

        /* Feature Card */
        .feature-card {
            background: rgba(15, 15, 15, 0.4);
            backdrop-filter: blur(12px);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(255,255,255,0.05);
        }
        @media (hover: hover) {
            .feature-card:hover {
                background: rgba(255, 255, 255, 0.05);
                border-color: rgba(255, 255, 255, 0.15);
                transform: translateY(-8px);
            }
        }
        
        .work-card {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            background: #111;
        }
        .work-img {
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s;
            filter: grayscale(100%);
        }
        .work-card:hover .work-img {
            transform: scale(1.05);
            filter: grayscale(0%);
            opacity: 0.7;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes rotate-scroll {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .scroll-circle {
            animation: rotate-scroll 15s linear infinite;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .animate-marquee {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }

        section { position: relative; z-index: 1; }