        body {
            background-color: #0D0D12;
            color: #FAF8F5;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* SVG Noise Filter */
        .noise-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.05;
        }

        /* Micro-interactions */
        .btn-magnetic {
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .btn-magnetic:hover {
            transform: scale(1.03);
        }
        
        .lift-hover {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .lift-hover:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0D0D12;
        }
        ::-webkit-scrollbar-thumb {
            background: #1A1A24;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #A0A0AB;
        }
        
        /* Utility */
        .rounded-super { border-radius: 2rem; }
        .rounded-ultra { border-radius: 3rem; }
        
        /* Dashboard Card (from original) */
        .dash-card {
            background: rgba(26, 26, 36, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 1.5rem;
            padding: 1.25rem;
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        /* CSS Animations */
        @keyframes scan {
            0% { top: 0%; opacity: 0; }
            5% { opacity: 1; }
            95% { opacity: 1; }
            100% { top: 98%; opacity: 0; }
        }
