        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Josefin Sans', sans-serif;
            background-color: #001a20;
            display: flex; align-items: center; justify-content: center;
            min-height: 100vh; overflow: hidden;
        }

        body::before {
            content: '';
            position: fixed; top: -55%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(ellipse at 30% 40%, rgba(0,210,255,0.12) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 60%, rgba(255,140,0,0.08) 0%, transparent 50%),
                        radial-gradient(ellipse at center, #001a20 0%, #000d14 70%);
            animation: bgPulse 8s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes bgPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.85; }
        }

        .scanlines {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 4px);
            z-index: 2; pointer-events: none;
        }

        .particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
        .particle { position: absolute; border-radius: 50%; animation: floatParticle linear infinite; opacity: 0; }

        @keyframes floatParticle {
            0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10%  { opacity: 0.7; } 90% { opacity: 0.2; }
            100% { transform: translateY(-10px) rotate(720deg); opacity: 0; }
        }

        .container { position: relative; z-index: 1; text-align: center; padding: 20px; width: 100%; max-width: 420px; }

        /* ===== 01 — Neon Flicker ===== */
        .site-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 5px;
        }

        /* ES - orange neon flicker */
        .site-title .w2 {
            color: #ff8c00;
            -webkit-text-stroke: 0;
            display: inline-block;
            animation: flickerES 4s infinite;
        }

        @keyframes flickerES {
            0%,100% { text-shadow: 0 0 7px #ff8c00, 0 0 21px #ff8c00, 0 0 42px #ff8c00; opacity: 1; }
            45%     { text-shadow: 0 0 7px #ff8c00, 0 0 21px #ff8c00, 0 0 42px #ff8c00; opacity: 1; }
            46%     { opacity: 0.4; text-shadow: none; }
            47%     { opacity: 1; text-shadow: 0 0 20px #ff8c00, 0 0 60px #ff8c00; }
            48%     { opacity: 0.6; }
            49%     { opacity: 1; text-shadow: 0 0 7px #ff8c00, 0 0 21px #ff8c00; }
            70%     { text-shadow: 0 0 7px #ff8c00, 0 0 21px #ff8c00; opacity: 1; }
            71%     { opacity: 0.3; text-shadow: none; }
            72%     { opacity: 1; text-shadow: 0 0 30px #ff8c00, 0 0 80px rgba(255,140,0,0.6); }
        }

        /* PRO - cyan neon flicker, offset timing */
        .site-title .w3 {
            color: transparent;
            -webkit-text-stroke: 2px #00d2ff;
            display: inline-block;
            animation: flickerPRO 4s infinite;
            animation-delay: 0.4s;
        }

        @keyframes flickerPRO {
            0%,100% { text-shadow: 0 0 7px #00d2ff, 0 0 21px #00d2ff, 0 0 42px #00d2ff; opacity: 1; -webkit-text-stroke: 2px #00d2ff; }
            55%     { text-shadow: 0 0 7px #00d2ff, 0 0 21px #00d2ff; opacity: 1; }
            56%     { opacity: 0.3; text-shadow: none; -webkit-text-stroke: 2px rgba(0,210,255,0.3); }
            57%     { opacity: 1; text-shadow: 0 0 25px #00d2ff, 0 0 70px #00d2ff; -webkit-text-stroke: 2px #80eaff; }
            58%     { opacity: 0.7; }
            59%     { opacity: 1; -webkit-text-stroke: 2px #00d2ff; }
            80%     { opacity: 1; }
            81%     { opacity: 0.5; text-shadow: none; }
            82%     { opacity: 1; text-shadow: 0 0 30px #00d2ff, 0 0 80px rgba(0,210,255,0.5); -webkit-text-stroke: 2px #80eaff; }
            83%     { -webkit-text-stroke: 2px #00d2ff; }
        }

        .divider {
            width: 100px; height: 3px;
            background: linear-gradient(to right, transparent, #00d2ff, #ff8c00, transparent);
            margin: 15px auto 25px;
            animation: expandLine 2s ease-in-out infinite alternate;
            box-shadow: 0 0 8px rgba(0,210,255,0.5);
        }

        @keyframes expandLine { from { width: 60px; opacity: 0.5; } to { width: 150px; opacity: 1; } }

        .login-box {
            background: rgba(0,20,30,0.7);
            border: 1px solid rgba(0,210,255,0.06);
            border-radius: 8px; padding: 30px;
            backdrop-filter: blur(15px);
            box-shadow: 0 0 40px rgba(0,210,255,0.08), 0 0 20px rgba(255,140,0,0.05), inset 0 0 30px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }

        /* Corner brackets cyan */
        .login-box::before { content: ''; position: absolute; top: 0; left: 0; width: 18px; height: 18px; border-top: 2px solid #00d2ff; border-left: 2px solid #00d2ff; }
        .login-box::after  { content: ''; position: absolute; bottom: 0; right: 0; width: 18px; height: 18px; border-bottom: 2px solid #ff8c00; border-right: 2px solid #ff8c00; }

        .form-group { margin-bottom: 15px; position: relative; }

        .form-group input {
            width: 100%; padding: 12px 40px 12px 15px;
            background: rgba(0,210,255,0.04);
            border: 1px solid rgba(0,210,255,0.2);
            border-radius: 4px; color: #fff;
            font-family: 'Josefin Sans', sans-serif;
            font-size: 14px; letter-spacing: 2px; outline: none; transition: all 0.3s;
        }

        .form-group input::placeholder { color: rgba(0,210,255,0.35); }

        .form-group input:focus {
            border-color: #00d2ff;
            background: rgba(0,210,255,0.07);
            box-shadow: 0 0 12px rgba(0,210,255,0.2);
        }

        .form-group .icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: rgba(0,210,255,0.5); pointer-events: none; }

        /* Gradient cyan to orange button */
        .btn-login {
            width: 100%; padding: 13px;
            background: linear-gradient(135deg, #00d2ff, #ff8c00);
            border: none; border-radius: 4px; color: #001a20;
            font-family: 'Josefin Sans', sans-serif;
            font-size: 14px; font-weight: 700; letter-spacing: 4px;
            text-transform: uppercase; cursor: pointer; transition: all 0.3s;
            margin-top: 5px; box-shadow: 0 0 20px rgba(0,210,255,0.3);
        }

        .btn-login:hover {
            background: linear-gradient(135deg, #40e0ff, #ffaa33);
            box-shadow: 0 0 30px rgba(0,210,255,0.5), 0 0 20px rgba(255,140,0,0.3);
            transform: translateY(-2px);
        }

        .alert { padding: 10px 15px; border-radius: 4px; margin-bottom: 15px; font-size: 13px; letter-spacing: 1px; text-align: center; }
        .alert-success { background: rgba(0,255,128,0.1); border: 1px solid #00ff80; color: #00ff80; }
        .alert-danger  { background: rgba(255,80,80,0.1); border: 1px solid #ff5050; color: #ff8888; }
        .alert-warning { background: rgba(255,200,0,0.1); border: 1px solid #ffc800; color: #ffc800; }
        .alert-info    { background: rgba(0,210,255,0.1); border: 1px solid #00d2ff; color: #00d2ff; }

        .brand { 
            margin-top: 22px; 
            font-size: 12px; 
            letter-spacing: 5px; 
            text-transform: uppercase; 
            font-weight: 800;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            user-select: none;
        }
        .brand .char {
            display: inline-block;
            transition: color 0.1s;
            min-width: 0.7em;
            text-align: center;
        }
        .brand .space { min-width: 0.5em; }
        .brand .char.part1 { color: rgba(0,210,255,0.35); }
        .brand .char.part2 { color: #ff8c00; }
        .brand .char.scramble { color: rgba(0,210,255,0.8); }

        /* Select2 */
        .select2-container { width: 100% !important; }
        .select2-container--default .select2-selection--single { background: rgba(0,210,255,0.04) !important; border: 1px solid rgba(0,210,255,0.2) !important; border-radius: 4px !important; height: 44px !important; }
        .select2-container--default .select2-selection--single .select2-selection__rendered { color: rgba(0,210,255,0.4) !important; font-family: 'Josefin Sans', sans-serif !important; font-size: 14px !important; letter-spacing: 2px !important; line-height: 44px !important; padding-left: 15px !important; }
        .select2-container--default .select2-selection--single .select2-selection__arrow { height: 44px !important; }
        .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: rgba(0,210,255,0.5) transparent transparent transparent !important; }
        .select2-container--default.select2-container--open .select2-selection--single { border-color: #00d2ff !important; box-shadow: 0 0 12px rgba(0,210,255,0.2) !important; }
        .select2-dropdown { background: #001520 !important; border: 1px solid rgba(0,210,255,0.25) !important; border-radius: 4px !important; }
        .select2-container--default .select2-results__option { color: #aaa !important; font-family: 'Josefin Sans', sans-serif !important; padding: 10px 15px !important; letter-spacing: 1px !important; }
        .select2-container--default .select2-results__option--highlighted[aria-selected] { background: rgba(0,210,255,0.15) !important; color: #fff !important; }
        .select2-container--default .select2-results__option[aria-selected=true] { background: rgba(0,210,255,0.3) !important; }
		
/* ── Welcome overlay ────────────────────────────────── */
    #welcomeOverlay {
        position: fixed; inset: 0; z-index: 99999;
        display: flex; align-items: center; justify-content: center;
        background: radial-gradient(ellipse at center, #041827 0%, #000 70%);
        opacity: 0; pointer-events: none;
        transition: opacity 0.5s ease;
        font-family: 'Josefin Sans', sans-serif;
    }
    #welcomeOverlay.show { opacity: 1; pointer-events: auto; }
    #welcomeOverlay .wrap {
        text-align: center; position: relative;
        transform: translateY(20px) scale(0.96);
        opacity: 0;
        transition: transform 0.7s cubic-bezier(.2,.7,.3,1) 0.15s,
                    opacity 0.7s ease 0.15s;
    }
    #welcomeOverlay.show .wrap { transform: translateY(0) scale(1); opacity: 1; }

    #welcomeOverlay .check-ring {
        width: 88px; height: 88px; margin: 0 auto 22px;
        border-radius: 50%;
        background: linear-gradient(135deg, #00d2ff 0%, #00ffee 100%);
        display: flex; align-items: center; justify-content: center;
        box-shadow: 0 0 40px rgba(0,210,255,0.7),
                    0 0 80px rgba(0,210,255,0.35),
                    inset 0 1px 0 rgba(255,255,255,0.5);
        position: relative;
    }
    #welcomeOverlay .check-ring::before {
        content: ''; position: absolute; inset: -8px;
        border-radius: 50%;
        border: 1.5px solid rgba(255,140,0,0.4);
        animation: ringPulse 1.6s ease-out infinite;
    }
    #welcomeOverlay .check-ring svg {
        stroke-dasharray: 40; stroke-dashoffset: 40;
        animation: drawCheck 0.5s cubic-bezier(.2,.7,.3,1) 0.45s forwards;
    }
    @keyframes ringPulse {
        0%   { transform: scale(1); opacity: 1; }
        100% { transform: scale(1.4); opacity: 0; }
    }
    @keyframes drawCheck { to { stroke-dashoffset: 0; } }

    #welcomeOverlay .welcome-label {
        font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
        color: #ffffff; font-weight: 700; margin-bottom: 10px;
        text-shadow: 0 0 10px rgba(0,210,255,0.6);
    }
    #welcomeOverlay .welcome-name {
        font-size: 24px; font-weight: 700; letter-spacing: 0.12em;
        color: #fff; text-transform: uppercase;
        text-shadow: 0 0 20px rgba(0,210,255,0.4);
        margin-bottom: 14px;
    }
    #welcomeOverlay .welcome-name .accent {
        background: linear-gradient(90deg, #00d2ff 0%, #00ffee 50%, #ff8c00 100%);
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent; color: transparent;
    }
    #welcomeOverlay .welcome-sub {
        font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase;
        color: rgba(255,170,51,0.9); font-weight: 500;
        display: inline-flex; align-items: center; gap: 10px;
    }
    #welcomeOverlay .welcome-sub .dots span {
        display: inline-block;
        width: 5px; height: 5px;
        border-radius: 50%;
        background: #00d2ff ;
        margin: 0 2px;
        box-shadow: 0 0 6px #00d2ff ;
        animation: pdot 1.4s infinite ease-in-out;
        opacity: 0.3;
    }
    #welcomeOverlay .welcome-sub .dots span:nth-child(2) { animation-delay: 0.2s; }
    #welcomeOverlay .welcome-sub .dots span:nth-child(3) { animation-delay: 0.4s; }
    #welcomeOverlay .wparticles {
        position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    #welcomeOverlay .wparticles span {
        position: absolute; bottom: -10px;
        width: 3px; height: 3px; border-radius: 50%;
        background: #00d2ff; box-shadow: 0 0 6px #00d2ff;
        animation: wfloat linear infinite;
    }
    @keyframes wfloat {
        0%   { transform: translateY(0) translateX(0); opacity: 0; }
        10%,90% { opacity: 0.9; }
        100% { transform: translateY(-110vh) translateX(40px); opacity: 0; }
    }

	@keyframes pdot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
    40%           { transform: scale(1.2); opacity: 1; }
	}