        :root {
            --primary: #FF9933;
            --secondary: #00F3FF; 
            --dark: #050505;
            --glass: rgba(255, 255, 255, 0.05);
            --border: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none; 
        }

        body {
            background-color: var(--dark);
            color: white;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }


        #cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--secondary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s;
            mix-blend-mode: difference;
        }
        #cursor-dot {
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s;
        }


        #vanta-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            opacity: 0.6;
        }

        .glitch {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            position: relative;
            color: white;
            text-transform: uppercase;
        }
        
        .glitch::before, .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
        }
        
        .glitch::before {
            left: 2px;
            text-shadow: -2px 0 var(--primary);
            clip: rect(24px, 550px, 90px, 0);
            animation: glitch-anim-2 3s infinite linear alternate-reverse;
        }
        
        .glitch::after {
            left: -2px;
            text-shadow: -2px 0 var(--secondary);
            clip: rect(85px, 550px, 140px, 0);
            animation: glitch-anim 2.5s infinite linear alternate-reverse;
        }

        @keyframes glitch-anim {
            0% { clip: rect(10px, 9999px, 30px, 0); }
            20% { clip: rect(80px, 9999px, 100px, 0); }
            40% { clip: rect(10px, 9999px, 120px, 0); }
            100% { clip: rect(40px, 9999px, 60px, 0); }
        }
        @keyframes glitch-anim-2 {
            0% { clip: rect(60px, 9999px, 80px, 0); }
            20% { clip: rect(20px, 9999px, 40px, 0); }
            100% { clip: rect(90px, 9999px, 10px, 0); }
        }

        section {
            min-height: 100vh;
            padding: 4rem 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .hero-content h2 {
            color: var(--secondary);
            letter-spacing: 5px;
            margin-bottom: 1rem;
            font-family: 'Orbitron';
        }
        .prime-line {
            margin-top: 2rem;
            padding: 1rem;
            border-left: 4px solid var(--primary);
            background: linear-gradient(90deg, rgba(255,153,51,0.1) 0%, rgba(0,0,0,0) 100%);
            font-style: italic;
            font-size: 1.2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .stat-card {
            background: var(--glass);
            border: 1px solid var(--border);
            padding: 2rem;
            backdrop-filter: blur(10px);
            border-radius: 10px;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(255, 153, 51, 0.3);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Orbitron';
        }
        .stat-label {
            color: #aaa;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .terminal-window {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid var(--secondary);
            border-radius: 5px;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
            font-family: 'Courier New', monospace;
            padding: 1rem;
            margin-top: 2rem;
        }
        .terminal-header {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid #333;
            padding-bottom: 0.5rem;
        }
        .dot { width: 12px; height: 12px; border-radius: 50%; }
        .red { background: #ff5f56; }
        .yellow { background: #ffbd2e; }
        .green { background: #27c93f; }
        
        .cmd-line {
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        .project-item {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #333;
            display: flex;
            justify-content: space-between;
            transition: 0.2s;
            flex-wrap: wrap; 
        }
        .project-item:hover {
            background: rgba(0, 243, 255, 0.1);
            padding-left: 10px;
            color: var(--secondary);
        }
        .project-list a {
            color: inherit; 
            text-decoration: none;
            cursor: none; 
        }

        .badge-container {
            display: flex;
            gap: 1rem;
            margin: 1rem 0;
        }
        .badge {
            background: linear-gradient(45deg, #ff9933, #ff5f00);
            color: white;
            padding: 0.5rem 1.5rem;
            font-weight: bold;
            border-radius: 50px;
            font-family: 'Orbitron';
            text-transform: uppercase;
            box-shadow: 0 0 15px var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .badge-img {
            width: 54px;  
            height: 54px; 
            margin-right: 1px;
            object-fit: contain;
            vertical-align: middle;
            margin-left: 4px;
        }

        .highlight { color: var(--secondary); }
        .highlight-pol { color: var(--primary); }
        
        footer {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: #666;
        }

        #progress {
            position: fixed;
            bottom: 0;
            left: 0;
            height: 4px;
            background: var(--primary);
            width: 0%;
            z-index: 10000;
        }

        @media (max-width: 768px) {
            .glitch { font-size: 3rem; }
            section { padding: 4rem 5%; }
        }

