        :root {
            --primary: #00ff88;
            --secondary: #ff0055;
            --tertiary: #0088ff;
            --bg-darker: #050508;
            --text: #e0e0e0;
        }

        :root {
            --gh-bg: #0d1117;
            --gh-border: #30363d;
            --gh-blue: #58a6ff;
            --gh-card: rgba(22, 27, 34, 0.7);
            --glass-blur: blur(12px);
            --rgb-cyan: rgb(34, 211, 238);
        }

        body {
            background-color: var(--gh-bg);
            color: #c9d1d9;
            font-family: 'Space Grotesk', sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bg-mesh {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: radial-gradient(circle at 20% 30%, rgba(255, 0, 247, 0.05) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
        }

        .orbitron {
            font-family: 'Orbitron', sans-serif;
        }

        .syncopate {
            font-family: 'Syncopate', sans-serif;
        }

        .mono {
            font-family: 'JetBrains Mono', monospace;
        }

        .vip-card {
            background: var(--gh-card);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--gh-border);
            border-radius: 2.5rem;
            width: 100%;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            transition: all 0.5s;
            position: relative;
        }

        .vip-card:hover {
            border-color: var(--rgb-cyan);
            box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--gh-blue), #ff00f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cyber-input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .cyber-label {
            display: block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #8b949e;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .cyber-input {
            width: 100%;
            background: #010409 !important;
            border: 1px solid var(--gh-border) !important;
            color: #fff !important;
            padding: 1rem 1rem 1rem 3.5rem;
            border-radius: 1.2rem;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
        }

        .icon-prefix {
            position: absolute;
            left: 1.25rem;
            top: 44px;
            color: #484f58;
            transition: color 0.3s;
            z-index: 5;
        }

        .toggle-password {
            position: absolute;
            right: 1.25rem;
            top: 44px;
            color: #484f58;
            cursor: pointer;
            z-index: 10;
            padding: 5px;
        }

        .btn-cyber {
            background: #fff;
            color: #000;
            font-weight: 800;
            padding: 1.2rem;
            border-radius: 1.2rem;
            width: 100%;
            font-family: 'Syncopate', sans-serif;
            letter-spacing: 3px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: 0.4s;
        }

        .btn-cyber:hover {
            background: var(--gh-blue);
            color: #fff;
        }

        .btn-verify {
            background: rgba(88, 166, 255, 0.08);
            border: 1px solid var(--gh-blue);
            color: var(--gh-blue);
            padding: 0 1.5rem;
            border-radius: 1.2rem;
            font-family: 'Syncopate', sans-serif;
            font-size: 10px;
            cursor: pointer;
            transition: 0.3s;
            height: 52px;
            margin-top: 26px;
        }

        .btn-verify:hover {
            background: var(--gh-blue);
            color: #000;
        }

        .view-transition {
            display: none;
        }

        .view-active {
            display: block;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glass-toast {
            background: rgba(13, 17, 23, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid var(--gh-border);
            padding: 18px 25px;
            border-radius: 1rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            animation: toastIn 0.3s forwards;
        }

        @keyframes toastIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        html,
        body {
            cursor: none;
        }

        #cursor {
            position: fixed;
            width: 12px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 10000;
        }

        #cursor-outline {
            position: fixed;
            width: 36px;
            height: 36px;
            border: 1px solid rgba(56, 189, 248, .6);
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9999;
        }

        .cursor-trail {
            position: fixed;
            width: 6px;
            height: 6px;
            background: rgba(56, 189, 248, .7);
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
        }

        ::-webkit-scrollbar {
            width: 5px
        }

        ::-webkit-scrollbar-track {
            background: #000000
        }

        ::-webkit-scrollbar-thumb {
            background-color: #0d1117;
        }

        /* ================= LOADER ONLY ================= */

        :root {
            --primary: #ff00f734;
            --secondary: #ff0055;
            --tertiary: #0088ff;
            --bg-darker: #050508;
            --text: #e0e0e0;
        }

        /* Loader main container */
        #loader {
            position: fixed;
            inset: 0;
            background: var(--bg-darker);
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            color: var(--text);
            overflow: hidden;
        }

        /* Background effects */
        #loader .bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: radial-gradient(circle at 20% 30%, #ff00f70d 0%, transparent 40%), radial-gradient(circle at 80% 70%, #00d4ff0d 0%, transparent 40%);
        }

        #loader .bg-grid {
            position: absolute;
            width: 200%;
            height: 200%;
            background-image:
                linear-gradient(to right, #ff00f70d 1px, transparent 1px),
                linear-gradient(to bottom, #00d4ff0d 1px, transparent 1px);
            background-size: 40px 40px;
            transform: perspective(500px) rotateX(60deg);
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            to {
                transform: perspective(500px) rotateX(60deg) translateY(40px);
            }
        }

        #loader .bg-glow {
            position: absolute;
            inset: 0;

            filter: blur(40px);
        }

        /* Wrapper (perfect center control) */
        #loader .wrapper {
            min-height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 5;
        }

        /* Logo */
        #loader .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        #loader .logo-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid transparent;
            background: linear-gradient(45deg,
                    var(--primary),
                    var(--tertiary),
                    var(--secondary)) border-box;
            padding: 3px;
            animation: logoGlow 3s ease-in-out infinite alternate,
                logoFloat 6s ease-in-out infinite;
        }

        @keyframes logoGlow {
            from {
                box-shadow:
                    0 0 20px rgba(0, 255, 136, .3),
                    0 0 40px rgba(0, 136, 255, .2),
                    inset 0 0 20px rgba(0, 255, 136, .1);
            }

            to {
                box-shadow:
                    0 0 30px rgba(0, 255, 136, .5),
                    0 0 60px rgba(0, 136, 255, .3),
                    0 0 90px rgba(255, 0, 85, .15),
                    inset 0 0 30px rgba(0, 255, 136, .2);
            }
        }

        @keyframes logoFloat {
            50% {
                transform: translateY(-10px) rotate(2deg);
            }
        }

        /* Team badge */
        #loader .team-badge {
            font-size: 1rem;
            letter-spacing: 3px;
            color: var(--rgb-cyan);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        /* Progress */
        #loader .progress-container {
            margin-top: 2.5rem;
            width: 100%;
            max-width: 420px;
        }

        #loader .progress-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        #loader .progress-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 3px;
            overflow: hidden;
        }

        #loader .progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--primary), var(--tertiary));
            animation: progressLoad 2.5s ease forwards;
        }

        @keyframes progressLoad {
            to {
                width: 100%;
            }
        }

        /* Copyright */
        #loader .copyright {
            position: absolute;
            bottom: 20px;
            width: 100%;
            text-align: center;
            font-size: 0.7rem;
            font-family: 'Share Tech Mono', monospace;
            opacity: 0.8;
        }

        /* Fade out */
        #loader.fade-out {
            animation: loaderFade 0.8s ease forwards;
        }

        @keyframes loaderFade {
            to {
                opacity: 0;
                transform: scale(1.05);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            #loader .main-title {
                font-size: 2.5rem;
                letter-spacing: 3px;
            }

            #loader .logo-image {
                width: 100px;
                height: 100px;
            }
        }

        .glitch-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            font-family: "Fascinate Inline", system-ui;
            font-weight: 400;
            font-style: normal;
        }

        .glitch {
            color: #fff;
            font-size: clamp(3.0rem, 5vw, 3.5rem);
            white-space: nowrap;
            font-weight: 900;
            position: relative;
            user-select: none;
        }

        .glitch::after,
        .glitch::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            color: #fff;
            background-color: #060010;
            overflow: hidden;
            clip-path: inset(0 0 0 0);
        }

        .glitch::after {
            left: 10px;
            text-shadow: -2px 0 red;
            animation: animate-glitch 3s infinite linear alternate-reverse;
        }

        .glitch::before {
            left: -10px;
            text-shadow: 2px 0 cyan;
            animation: animate-glitch 2s infinite linear alternate-reverse;
        }

        @keyframes animate-glitch {
            0% {
                clip-path: inset(20% 0 50% 0);
            }

            5% {
                clip-path: inset(10% 0 60% 0);
            }

            10% {
                clip-path: inset(15% 0 55% 0);
            }

            15% {
                clip-path: inset(25% 0 35% 0);
            }

            20% {
                clip-path: inset(30% 0 40% 0);
            }

            25% {
                clip-path: inset(40% 0 20% 0);
            }

            30% {
                clip-path: inset(10% 0 60% 0);
            }

            35% {
                clip-path: inset(15% 0 55% 0);
            }

            40% {
                clip-path: inset(25% 0 35% 0);
            }

            45% {
                clip-path: inset(30% 0 40% 0);
            }

            50% {
                clip-path: inset(20% 0 50% 0);
            }

            55% {
                clip-path: inset(10% 0 60% 0);
            }

            60% {
                clip-path: inset(15% 0 55% 0);
            }

            65% {
                clip-path: inset(25% 0 35% 0);
            }

            70% {
                clip-path: inset(30% 0 40% 0);
            }

            75% {
                clip-path: inset(40% 0 20% 0);
            }

            80% {
                clip-path: inset(20% 0 50% 0);
            }

            85% {
                clip-path: inset(10% 0 60% 0);
            }

            90% {
                clip-path: inset(15% 0 55% 0);
            }

            95% {
                clip-path: inset(25% 0 35% 0);
            }

            100% {
                clip-path: inset(30% 0 40% 0);
            }
        }

        .eye {
            font-size: 1.5rem;
            animation: float 3s ease-in-out infinite;
        }

        .eye.left {
            animation-delay: 0s;
        }

        .eye.right {
            animation-delay: 1.5s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }
        