@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');
        
        /* Loader Styles */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a0a12;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-logo {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .loader-bar {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }
        
        .loader-progress {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #00f0ff, #0090ff);
            animation: loaderAnimation 2s ease-in-out forwards;
        }
        
        @keyframes loaderAnimation {
            0% { width: 0%; }
            100% { width: 100%; }
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            @apply bg-dark-900 text-gray-100;
            overflow-x: hidden;
        }

        body.black-mode {
            @apply bg-black-1000 text-gray-200;
        }
        
        h1, h2, h3, h4, .font-futurist {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #00f0ff, #0090ff, #00f0ff);
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            animation: text-gradient 8s ease infinite;
        }

        .black-mode .gradient-text {
            background: linear-gradient(90deg, #ffffff, #aaaaaa, #ffffff);
            animation: text-gradient 8s ease infinite;
        }
        
        .glow {
            text-shadow: 0 0 10px rgba(0, 200, 255, 0.7);
        }

        .black-mode .glow {
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }
        
        .card-glass {
            background: rgba(26, 26, 40, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 200, 255, 0.2);
        }

        .black-mode .card-glass {
            background: rgba(13, 13, 13, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .card-glass:hover {
            border-color: rgba(0, 200, 255, 0.5);
            box-shadow: 0 0 20px rgba(0, 200, 255, 0.2);
        }

        .black-mode .card-glass:hover {
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }
        
        .neon-border {
            position: relative;
        }
        
        .neon-border::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, #00f0ff, #0090ff);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .black-mode .neon-border::before {
            background: linear-gradient(135deg, #ffffff, #aaaaaa);
        }
        
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }
        
        .content-wrapper {
            position: relative;
            z-index: 1;
        }
        
        .terminal {
            background: rgba(10, 10, 18, 0.8);
            border: 1px solid rgba(0, 200, 255, 0.3);
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(0, 200, 255, 0.1);
        }

        .black-mode .terminal {
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
        }
        
        .terminal-header {
            @apply bg-dark-800;
            height: 32px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            display: flex;
            align-items: center;
            padding: 0 12px;
        }

        .black-mode .terminal-header {
            @apply bg-black-900;
        }
        
        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 6px;
        }
        
        .terminal-content {
            padding: 16px;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.6;
            color: #00f0ff;
            text-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
        }

        .black-mode .terminal-content {
            color: #ffffff;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
        }
        
        .terminal-command {
            color: #00ff88;
        }

        .black-mode .terminal-command {
            color: #4dffb8;
        }
        
        .terminal-path {
            color: #0090ff;
        }

        .black-mode .terminal-path {
            color: #7aa7ff;
        }
        
        .hexagon {
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }
        
        .skill-bar {
            height: 4px;
            background: rgba(0, 200, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .black-mode .skill-bar {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .skill-progress {
            position: absolute;
            height: 100%;
            background: linear-gradient(90deg, #00f0ff, #0090ff);
            animation: progressAnimation 2s ease-out forwards;
        }

        .black-mode .skill-progress {
            background: linear-gradient(90deg, #ffffff, #aaaaaa);
        }
        
        @keyframes progressAnimation {
            from { width: 0; }
            to { width: var(--progress); }
        }

        .theme-btn {
            @apply fixed bottom-6 right-6 rounded-full p-3 shadow-lg hover:shadow-xl transition-all z-50;
            background: rgba(26, 26, 40, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 200, 255, 0.3);
        }

        .black-mode .theme-btn {
            background: rgba(13, 13, 13, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .theme-btn:hover {
            transform: scale(1.1);
        }

        /* Custom moon/sun icons */
        .theme-icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: all 0.3s ease;
        }

        .moon-icon {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s ease;
        }

        .moon-icon.active {
            opacity: 1;
            transform: scale(1);
        }

        .sun-icon {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.5) rotate(90deg);
            transition: all 0.3s ease;
        }

        .sun-icon.active {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .neon-icon {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s ease;
        }

        .neon-icon.active {
            opacity: 1;
            transform: scale(1);
        }