        :root {
            --brand-cyan: #00d2ff;
            --brand-purple: #9d50bb;
            --bg-dark: #080b12;
            --glass-bg: rgba(15, 20, 35, 0.7);
            --border-glow: rgba(0, 210, 255, 0.3);
            --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            background-image: 
                radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.05) 0%, transparent 50%),
                linear-gradient(rgba(0, 210, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 210, 255, 0.02) 1px, transparent 1px);
            background-size: 100% 100%, 30px 30px, 30px 30px;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #premium-abhi-popup-wrap {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        /* The Advanced Card Container */
        .premium-abhi-card {
            position: relative;
            width: 90%;
            max-width: 380px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
            z-index: 1;
            animation: abhiFadeIn 0.8s var(--transition);
        }

        /* Animated Border Track */
        .premium-abhi-card::before {
            content: "";
            position: absolute;
            inset: -2px;
            border-radius: 26px;
            padding: 2px;
            background: conic-gradient(from var(--angle), transparent 70%, var(--brand-cyan), var(--brand-purple), var(--brand-cyan));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: rotateBorder 4s linear infinite;
        }

        @property --angle {
            syntax: "<angle>";
            initial-value: 0deg;
            inherits: false;
        }

        @keyframes rotateBorder {
            to { --angle: 360deg; }
        }

        .premium-abhi-logo {
            width: 85px;
            height: 85px;
            border-radius: 22px;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 30px var(--border-glow);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .premium-abhi-logo:hover {
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 0 40px var(--brand-cyan);
        }

        .premium-abhi-title {
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .premium-abhi-tag {
            background: linear-gradient(90deg, var(--brand-cyan), var(--brand-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 4px;
            margin-bottom: 30px;
        }

        .user-input-wrap {
            position: relative;
            margin-bottom: 20px;
        }

        #name {
            width: 100%;
            padding: 16px 20px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            color: #fff;
            font-size: 15px;
            outline: none;
            transition: var(--transition);
            text-align: center;
        }

        #name:focus {
            background: rgba(0, 0, 0, 0.5);
            border-color: var(--brand-cyan);
            box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
        }

        /* Premium Deployment Button */
        .premium-abhi-btn {
            display: inline-block;
            width: 100%;
            padding: 16px;
            background: #fff;
            color: #000;
            border-radius: 14px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: none;
        }

        .premium-abhi-btn:hover {
            transform: scale(1.02);
            background: var(--brand-cyan);
            color: #fff;
            box-shadow: 0 10px 25px var(--border-glow);
        }

        .premium-abhi-btn:active {
            transform: scale(0.98);
        }

        @keyframes abhiFadeIn {
            from { opacity: 0; transform: scale(0.95) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        /* Subtle Background Animation */
        body::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--brand-cyan);
            filter: blur(150px);
            opacity: 0.1;
            top: 10%;
            left: 10%;
            z-index: -1;
            animation: drift 10s ease-in-out infinite alternate;
        }

        @keyframes drift {
            from { transform: translate(0, 0); }
            to { transform: translate(100px, 100px); }
        }
