        /* --- The colors of my world --- */
        :root {
            --bg-dark: #050505;
            --bg-card: #0f0f0f;
            --accent: #3b82f6;
            --accent-glow: rgba(59, 130, 246, 0.5);
            --accent-secondary: #9333ea;
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --border: rgba(255, 255, 255, 0.08);
            --font-main: 'Inter', sans-serif;
            --font-mono: 'Space Mono', monospace;
        }

        /* --- BASIC RULES + CURSOR NUKE --- */
        * { 
            margin: 0; padding: 0; box-sizing: border-box; 
            /* THE NUCLEAR OPTION: Hides system cursor on EVERYTHING */
            cursor: none !important; 
        }

        body {
            font-family: var(--font-main);
            background: var(--bg-dark);
            color: var(--text-primary);
            overflow: hidden;
            height: 100vh;
            width: 100vw;
        }

        /* --- THE CUSTOM CURSOR --- */
        .cursor-dot {
            width: 10px;
            height: 10px;
            background-color: white;
            border-radius: 50%;
            position: fixed;
            pointer-events: none; /* Lets clicks pass through the dot */
            z-index: 99999;
            transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s, opacity 0.2s, background-color 0.2s;
            mix-blend-mode: difference; /* Makes it visible on light backgrounds */
        }
        
        /* Cursor reaction on hover */
        .cursor-dot.hovered {
            width: 25px;
            height: 25px;
            opacity: 0.5;
            background-color: var(--accent);
            mix-blend-mode: normal;
        }

        /* --- The Grand Entrance --- */
        #start-screen {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(15px);
            z-index: 9999;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transition: opacity 0.8s ease;
        }
        #start-screen.hidden { opacity: 0; pointer-events: none; }
        
        .start-text {
            font-family: var(--font-mono); font-size: 1.5rem; letter-spacing: 3px;
            color: var(--text-primary); animation: pulse 2s infinite; text-transform: uppercase;
        }
        .start-sub {
            margin-top: 15px; color: var(--text-secondary); font-size: 0.9rem;
        }
        @keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }

        /* --- Sorry, no phones allowed here --- */
        #mobile-warning {
            display: none;
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--bg-dark); z-index: 10000;
            flex-direction: column; align-items: center; justify-content: center; text-align: center;
            padding: 40px;
        }
        #mobile-warning h2 { font-size: 2rem; margin-bottom: 20px; color: var(--accent); }
        #mobile-warning p { color: var(--text-secondary); line-height: 1.6; }

        /* --- The Big Map Layout --- */
        .world-container {
            display: grid;
            grid-template-columns: 100vw 100vw 100vw 100vw;
            grid-template-rows: 100vh 100vh; 
            width: 400vw;
            height: 200vh;
            transition: filter 0.8s ease;
        }
        
        .world-container.blurred { filter: blur(10px); }

        #section-0 { grid-column: 1; grid-row: 1; } 
        #section-1 { grid-column: 2; grid-row: 1; } 
        #section-2 { grid-column: 3; grid-row: 1; } 
        #section-3 { grid-column: 4; grid-row: 1; } 
        #section-4 { grid-column: 4; grid-row: 2; } 

        section {
            width: 100vw; height: 100vh;
            position: relative; display: flex; align-items: center; justify-content: center;
            padding: 0 8%; overflow: hidden;
        }

        /* --- Making it look magical --- */
        .bg-gradient {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08), transparent 25%),
                        radial-gradient(circle at 85% 30%, rgba(147, 51, 234, 0.05), transparent 25%);
            z-index: -1; pointer-events: none;
        }
        .noise-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
            z-index: -1; pointer-events: none;
        }

        /* --- Finding your way around --- */
        nav {
            position: fixed; top: 40px; right: 60px; z-index: 100;
            background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(12px);
            padding: 12px 30px; border-radius: 50px; border: 1px solid var(--border);
        }
        nav ul { display: flex; gap: 30px; list-style: none; }
        nav a {
            color: var(--text-secondary); text-decoration: none; font-family: var(--font-mono); font-size: 11px;
            font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; 
        }
        nav a.active, nav a:hover { color: var(--text-primary); text-shadow: 0 0 10px var(--accent-glow); }

        .nav-arrows { position: fixed; bottom: 40px; left: 60px; z-index: 100; display: flex; gap: 15px; }
        .arrow-btn {
            width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border);
            background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(12px);
            color: var(--text-secondary); display: flex; align-items: center; justify-content: center;
            transition: all 0.3s; opacity: 1; visibility: visible;
        }
        .arrow-btn:hover { background: var(--accent); color: white; border-color: var(--accent); transform: scale(1.1); }
        .arrow-btn.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

        /* --- The DJ Booth --- */
        .audio-wrapper { position: fixed; bottom: 40px; right: 60px; z-index: 100; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
        .audio-bar {
            display: flex; align-items: center; gap: 15px;
            background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(12px);
            padding: 10px 20px; border-radius: 30px; border: 1px solid var(--border);
        }
        .settings-btn { color: var(--text-secondary); transition: color 0.3s; }
        .settings-btn:hover { color: var(--text-primary); transform: rotate(45deg); transition: all 0.3s; }
        .sound-mixer {
            background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(20px);
            border: 1px solid var(--border); border-radius: 12px;
            padding: 20px; width: 200px; opacity: 0; pointer-events: none; transform: translateY(10px);
            transition: all 0.3s ease;
        }
        .sound-mixer.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
        .mixer-row { margin-bottom: 15px; }
        .mixer-label { font-size: 10px; color: var(--text-secondary); font-family: var(--font-mono); margin-bottom: 5px; display: block; }
        input[type=range] { -webkit-appearance: none; width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; outline: none; }
        input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); transition: transform 0.1s; }
        input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }

        /* --- Buttons and fun stuff --- */
        .ui-btn { padding: 15px 30px; border-radius: 4px; font-weight: 600; transition: all 0.2s; }
        .btn-primary { background: var(--accent); color: white; border: none; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); }
        .btn-secondary { background: transparent; color: white; border: 1px solid var(--border); }
        .btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: white; }

        /* STAT BUTTONS (LIKE & VIEW) */
        .stat-btn {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-width: 100px;
            border-radius: 25px;
            padding: 15px 30px;
            font-weight: 600;
        }
        /* Hover Effect */
        .stat-btn:hover {
            border-color: #e34f26; 
            background: rgba(227, 79, 38, 0.1);
            color: #fff;
        }
        /* Specific Like Styles */
        .stat-btn.liked {
            color: #fff;
            border-color: #e34f26;
        }
        .stat-btn img {
            width: 20px;
            height: auto;
            vertical-align: middle;
            filter: grayscale(100%);
            transition: filter 0.3s;
        }
        .stat-btn.liked img, .stat-btn:hover img {
            filter: grayscale(0%);
        }
        /* View Icon Style */
        .stat-btn i {
            font-size: 1.2rem;
        }

        .split-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; max-width: 1400px; width: 100%; align-items: center; }
        .hero-text h1 {
            font-size: clamp(4rem, 6vw, 7rem); font-weight: 800; line-height: 1; margin-bottom: 25px; letter-spacing: -3px;
            background: linear-gradient(to right, #ffffff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .tag-pill {
            display: inline-block; padding: 6px 14px; border: 1px solid var(--accent); color: var(--accent);
            border-radius: 20px; font-family: var(--font-mono); font-size: 12px; margin-bottom: 30px;
            background: rgba(59, 130, 246, 0.05); box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
        }
        .bio-lg { color: var(--text-secondary); font-size: 1.2rem; line-height: 1.7; max-width: 600px; margin-bottom: 40px; }

        .profile-container { position: relative; width: 100%; max-width: 400px; aspect-ratio: 1; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
        .profile-img-wrapper {
            width: 100%; height: 100%; border-radius: 20px; overflow: hidden; position: relative; background: var(--bg-card);
            border: 1px solid var(--border); transition: transform 0.3s ease;
        }
        .profile-img { width: 100%; height: 100%; object-fit: cover; }
        .profile-img-wrapper:hover { animation: shadow-directional 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; }
        @keyframes shadow-directional {
            0% { box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0); }
            100% { box-shadow: inset var(--shadow-x, 6px) var(--shadow-y, 6px) 14px -6px rgba(0, 0, 0, 0.8); }
        }

        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1400px; width: 100%; height: 80vh; align-items: center; }
        .stack-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
        .stack-card { background: var(--bg-card); border: 1px solid var(--border); padding: 25px; border-radius: 12px; display: flex; align-items: center; gap: 15px; transition: transform 0.2s; }
        .stack-card:hover { transform: translateY(-3px); border-color: var(--card-color); }
        .stack-icon { font-size: 24px; color: var(--card-color); }

        .exp-container { position: relative; padding-left: 40px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
        .exp-line {
            position: absolute; left: 0; top: 10%; bottom: 10%; width: 2px; height: 0%;
            background: linear-gradient(to bottom, var(--accent), transparent);
            transition: height 1.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .in-view .exp-line { height: 80%; }
        .exp-item { margin-bottom: 40px; position: relative; opacity: 0; transform: translateX(20px); transition: all 0.6s ease-out; }
        .in-view .exp-item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
        .in-view .exp-item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
        .in-view .exp-item:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.7s; }
        .in-view .exp-item:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.9s; }
        
        .exp-dot {
            position: absolute; left: -45px; top: 5px; width: 12px; height: 12px;
            background: var(--bg-dark); border: 2px solid var(--accent); border-radius: 50%;
            box-shadow: 0 0 10px var(--accent); transform: scale(0); transition: transform 0.4s;
        }
        .in-view .exp-item:nth-child(2) .exp-dot { transform: scale(1); transition-delay: 0.3s; }
        .in-view .exp-item:nth-child(3) .exp-dot { transform: scale(1); transition-delay: 0.5s; }
        .in-view .exp-item:nth-child(4) .exp-dot { transform: scale(1); transition-delay: 0.7s; }
        .in-view .exp-item:nth-child(5) .exp-dot { transform: scale(1); transition-delay: 0.9s; }

        .exp-date { font-family: var(--font-mono); color: var(--accent); font-size: 11px; margin-bottom: 5px; display: block; }
        .exp-role { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin-bottom: 5px; }
        .exp-company { color: var(--text-secondary); font-size: 0.9rem; }

        .projects-wrapper { max-width: 1400px; width: 100%; display: flex; flex-direction: column; justify-content: center; }
        .project-carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .project-card { 
            background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 25px; 
            min-height: 400px; transition: transform 0.3s; display: flex; flex-direction: column;
        }
        .project-card:hover { transform: translateY(-10px); border-color: var(--accent); }
        .project-thumb {
            width: 100%; height: 180px; background: #0a0a0a; border-radius: 8px; margin-bottom: 20px;
            display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--border);
        }
        .project-thumb img { width: 100%; height: 100%; object-fit: contain; opacity: 0.9; transition: all 0.5s ease; }
        .project-card:hover .project-thumb img { opacity: 1; transform: scale(1.08); }

        .contact-container { text-align: center; }
        .contact-email {
            font-size: 2rem; color: var(--accent); text-decoration: none !important; 
            border: none; outline: none; transition: transform 0.3s; display: inline-block;
        }
        .contact-email:hover { transform: scale(1.05); text-decoration: none; }
        .social-links { display: flex; gap: 30px; justify-content: center; margin-top: 50px; }
        .social-btn { 
            font-size: 24px; color: var(--text-secondary); transition: all 0.3s; 
            width: 50px; height: 50px; border: 1px solid var(--border); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; text-decoration: none;
        }
        .social-btn:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-5px); }

        .quote-container { text-align: center; max-width: 900px; padding: 0 20px; }
        .quote-text {
            font-size: clamp(2rem, 5vw, 4rem); font-weight: 300; font-family: var(--font-mono);
            line-height: 1.4; color: var(--text-primary); margin-bottom: 30px;
            background: linear-gradient(135deg, #fff 0%, #71717a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .quote-author { color: var(--accent); font-family: var(--font-mono); font-size: 1rem; letter-spacing: 2px; }

        .fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .in-view .fade-in-up { opacity: 1; transform: translateY(0); }

        /* --- If the screen is too small, hide everything & bring back default cursor --- */
        @media (max-width: 1024px) {
            #mobile-warning { display: flex !important; }
            .world-container, nav, .nav-arrows, .audio-wrapper, .bg-gradient, .noise-overlay, #start-screen { display: none !important; }
            * { cursor: auto !important; } 
            .cursor-dot { display: none; }
        }