
        :root {
            /* INCONSSIFY Colors */
            --bg-primary: #070514;
            --bg-secondary: #0d0a1f;
            --bg-tertiary: #0f0c22;
            
            --text-primary: #ffffff;
            --text-secondary: #b8b0d4;
            --text-muted: #6b6290;

            --accent-main: #a855f7;
            --accent-glow: rgba(168, 85, 247, 0.4);
            
            --gradient-main: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #d946ef 100%);
            
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        /* Ambient Background */
        .ambient-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Main Card */
        .card {
            width: 100%;
            max-width: 440px;
            background: var(--bg-tertiary);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 8px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease-out-expo);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-main);
            opacity: 0.8;
        }

        .card:hover {
            border-color: rgba(168, 85, 247, 0.3);
            box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(168, 85, 247, 0.05);
        }

        /* Header */
        .header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        

        .subtitle {
            color: var(--text-secondary);
            font-size: 0.9375rem;
            margin-top: 0.75rem;
            font-weight: 500;
        }

        /* Form */
        form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .field {
            position: relative;
        }

        .field input,
        .field select {
            width: 100%;
            height: 56px;
            padding: 1.25rem 1rem 0.25rem 3rem;
            background: rgba(15, 12, 34, 0.7);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 0.9375rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            outline: none;
            transition: all 0.3s var(--ease-out-expo);
        }

        .field input:focus,
        .field select:focus {
            border-color: var(--accent-main);
            background: rgba(15, 12, 34, 0.9);
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
        }

        .field-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: var(--text-muted);
            pointer-events: none;
            transition: color 0.3s;
        }

        .field input:focus ~ .field-icon,
        .field select:focus ~ .field-icon {
            color: var(--accent-main);
        }

        .field label {
            position: absolute;
            left: 3rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 0.9375rem;
            pointer-events: none;
            transition: all 0.2s var(--ease-out-expo);
            font-weight: 500;
        }

        .field input:focus + label,
        .field input:not(:placeholder-shown) + label,
        .field select:focus + label,
        .field select:valid + label {
            top: 0.625rem;
            transform: translateY(0) scale(0.78);
            color: var(--accent-main);
            font-weight: 600;
        }

        .field select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            cursor: pointer;
        }

        .field select option {
            background: var(--bg-tertiary);
            color: var(--text-primary);
        }

        /* EPIN Section */
        .epin-field input {
            font-family: 'Courier New', monospace;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .epin-field input::placeholder {
            letter-spacing: normal;
            text-transform: none;
        }

        .epin-purchase {
            text-align: center;
            font-size: 0.8125rem;
            color: var(--text-muted);
            margin-top: -0.25rem;
            margin-bottom: 0.5rem;
        }

        .epin-purchase a {
            color: var(--accent-main);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .epin-purchase a:hover {
            color: #d946ef;
        }

        /* Button */
        .btn {
            width: 100%;
            height: 52px;
            margin-top: 0.5rem;
            background: var(--gradient-main);
            border: none;
            border-radius: 100px;
            color: #ffffff;
            font-size: 0.9375rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s var(--ease-spring);
            font-family: 'Plus Jakarta Sans', sans-serif;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px var(--accent-glow);
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Links */
        .links {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .links a {
            color: var(--accent-main);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .links a:hover {
            color: #d946ef;
        }

        /* Social Proof */
        .popup {
            position: fixed;
            bottom: 1.5rem;
            left: 1.5rem;
            background: rgba(15, 12, 34, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-left: 3px solid var(--accent-main);
            border-radius: 8px;
            padding: 1rem 1.25rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
            transform: translateX(-150%);
            transition: transform 0.5s var(--ease-out-expo);
            max-width: 300px;
            z-index: 9999;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .popup.show {
            transform: translateX(0);
        }

        .popup b {
            color: var(--text-primary);
            font-weight: 600;
        }

        .popup strong {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        /* Developer Credit */
        .dev-credit {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: var(--bg-tertiary);
            border: 1px solid rgba(168, 85, 247, 0.15);
            padding: 0.625rem 1rem;
            border-radius: 100px;
            font-size: 0.8125rem;
            color: var(--text-muted);
            text-decoration: none;
            z-index: 999;
            transition: all 0.3s;
        }

        .dev-credit:hover {
            border-color: var(--accent-main);
            color: var(--accent-main);
            background: rgba(168, 85, 247, 0.1);
        }

        /* Mobile Optimizations */
        @media (max-width: 480px) {
            body { padding: 1rem; }
            .card { padding: 1.75rem; border-radius: 20px; }
            .popup { left: 1rem; right: 1rem; bottom: 5rem; max-width: none; }
            .dev-credit { display: none; }
        }
    

/* Chrome Autofill Override */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 50px rgba(15, 12, 34, 1) inset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    transition: background-color 5000s ease-in-out 0s;
}
