body {
            background-color: #030712;
            color: #e2e8f0;
            /* overflow: hidden; Removed to allow scrolling on small screens */
        }

        /* Glassmorphism Depth */
        .glass-panel {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transform-style: preserve-3d;
        }

        .glass-input {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .glass-input:hover, .glass-input:focus {
            border-color: rgba(99, 102, 241, 0.5);
            background: rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
        }

        /* 3D Tilt Effect Container */
        #tilt-container {
            perspective: 1000px;
            transition: transform 0.1s;
        }

        #main-card {
            transition: transform 0.1s;
        }

        /* Custom Scrollbar for Terminal */
        .terminal-scroll::-webkit-scrollbar { width: 4px; }
        .terminal-scroll::-webkit-scrollbar-track { background: transparent; }
        .terminal-scroll::-webkit-scrollbar-thumb { background: #334155; border-radius: 2px; }

        /* Loader */
        .tech-loader {
            width: 100%;
            height: 4px;
            background: #1e293b;
            position: relative;
            overflow: hidden;
            border-radius: 2px;
        }
        .tech-loader::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 40%;
            background: linear-gradient(90deg, transparent, #6366f1, #2dd4bf, transparent);
            animation: tech-load 1.5s infinite linear;
        }
        @keyframes tech-load {
            0% { left: -40%; }
            100% { left: 100%; }
        }

        /* Canvas Background */
        #bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        /* Custom Cursor */
        body {
            cursor: none; /* Hide default cursor */
        }
        
        /* Restore default cursor for iframes or fallback if needed */
        iframe { cursor: auto; }

        #custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
            border: 1px solid rgba(99, 102, 241, 0.8);
            background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(99, 102, 241, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.2s cubic-bezier(0.19, 1, 0.22, 1), 
                        height 0.2s cubic-bezier(0.19, 1, 0.22, 1),
                        background 0.2s, 
                        border-color 0.2s;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
            backdrop-filter: blur(1px);
        }

        /* Cursor Hover State */
        #custom-cursor.hovering {
            width: 50px;
            height: 50px;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.3) 0%, rgba(45, 212, 191, 0) 70%);
            border-color: rgba(45, 212, 191, 0.8);
            box-shadow: 0 0 30px rgba(45, 212, 191, 0.4);
        }
    

body{font-family:'Calibri',sans-serif;}
