    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Subtle background glow */
        body::before {
            content: '';
            position: fixed;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 60%;
            background: radial-gradient(ellipse, rgba(255,107,53,0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 600;
            color: #ff6b35;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .logo:hover {
            opacity: 0.8;
        }

        .logo img {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            transition: all 0.3s;
            cursor: pointer;
        }

        .social-icon:hover {
            background: rgba(255,255,255,0.1);
            color: #fff;
            transform: translateY(-2px);
        }

        .social-icon:active {
            transform: translateY(0) scale(0.95);
        }

        .nav-actions {
            display: flex;
            gap: 8px;
            background: rgba(255,255,255,0.05);
            padding: 4px;
            border-radius: 12px;
        }

        .nav-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: none;
            background: transparent;
            color: #888;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .nav-btn:hover {
            background: rgba(255,255,255,0.1);
            color: #fff;
        }

        .nav-btn.active {
            background: rgba(255,107,53,0.2);
            color: #ff6b35;
        }

        .nav-btn:active {
            transform: scale(0.9);
        }

        /* Hero Section */
        .hero {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 40px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        /* Left Column */
        .left-column {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        /* Welcome Content */
        .welcome-content h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .welcome-content h1 span {
            color: #ff6b35;
        }

        .welcome-description {
            font-size: 17px;
            color: #888;
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 480px;
        }

        .feature-tags {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .feature-tag {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: rgba(255,107,53,0.1);
            border: 1px solid rgba(255,107,53,0.2);
            border-radius: 24px;
            font-size: 14px;
            color: #ccc;
            backdrop-filter: blur(10px);
            cursor: default;
        }

        .feature-tag svg {
            width: 16px;
            height: 16px;
            color: #ff6b35;
        }

        /* Auth Card with shine */
        .auth-card {
            background: linear-gradient(145deg, rgba(255,107,53,0.1) 0%, rgba(20,20,20,0.9) 50%, rgba(255,107,53,0.05) 100%);
            border: 1px solid rgba(255,107,53,0.2);
            border-radius: 24px;
            padding: 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 40px rgba(255,107,53,0.1),
                inset 0 1px 0 rgba(255,255,255,0.05);
        }

        .auth-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 60%);
            animation: pulse 4s ease-in-out infinite;
        }

        /* Shine effect */
        .auth-card::after {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,0.03),
                transparent
            );
            transform: rotate(25deg);
            animation: shine 6s ease-in-out infinite;
        }

        @keyframes shine {
            0%, 100% { left: -100%; }
            50% { left: 150%; }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .auth-content {
            position: relative;
            z-index: 1;
        }

        .auth-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            filter: drop-shadow(0 0 20px rgba(255,107,53,0.3));
        }

        .auth-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .auth-card h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .auth-card p {
            color: #888;
            margin-bottom: 28px;
            font-size: 15px;
        }

        .btn-primary {
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 18px;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(255,107,53,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255,107,53,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
        }

        .btn-primary:active {
            transform: translateY(0) scale(0.98);
            box-shadow: 0 2px 10px rgba(255,107,53,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
        }

        /* Button shine */
        .btn-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,0.1),
                transparent
            );
            transform: rotate(25deg);
            animation: btnShine 4s ease-in-out infinite;
        }

        @keyframes btnShine {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .btn-primary img {
            width: 20px;
            height: 20px;
            object-fit: contain;
            position: relative;
            z-index: 1;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #888;
            font-size: 14px;
            cursor: pointer;
            margin-bottom: 32px;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s;
            user-select: none;
        }

        .dropdown-toggle:hover {
            color: #fff;
            background: rgba(255,255,255,0.05);
        }

        .dropdown-toggle:active {
            transform: scale(0.95);
        }

        .dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
            opacity: 0;
            margin-bottom: 0;
        }

        .dropdown-content.active {
            max-height: 200px;
            opacity: 1;
            margin-bottom: 20px;
        }

        .dropdown-content p {
            color: #888;
            font-size: 13px;
            line-height: 1.6;
            padding: 12px;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .dropdown-toggle svg:last-child {
            transition: transform 0.3s;
        }

        .dropdown-toggle.active svg:last-child {
            transform: rotate(180deg);
        }

        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            margin: 20px 0;
        }

        .terms-text {
            font-size: 13px;
            color: #666;
            line-height: 1.8;
        }

        .terms-text a {
            color: #ff6b35;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .terms-text a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        .support-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 16px;
            font-size: 14px;
            color: #888;
        }

        .support-link a {
            color: #ff6b35;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .support-link a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        /* Right Column - Quick Access */
        .right-column {
            padding-top: 10px;
        }

        .quick-access h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
        }

        .access-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .access-card {
            padding: 20px;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 14px;
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
            text-decoration: none;
            color: inherit;
        }

        .access-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 50%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .access-card:hover {
            transform: translateY(-2px);
        }

        .access-card:active {
            transform: translateY(0) scale(0.98);
        }

        .access-card.blue {
            background: linear-gradient(145deg, rgba(59,130,246,0.08) 0%, rgba(20,20,20,0.8) 100%);
            box-shadow: 0 0 30px rgba(59,130,246,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .access-card.blue:hover {
            box-shadow: 0 0 40px rgba(59,130,246,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
            border-color: rgba(59,130,246,0.2);
        }

        .access-card.green {
            background: linear-gradient(145deg, rgba(34,197,94,0.08) 0%, rgba(20,20,20,0.8) 100%);
            box-shadow: 0 0 30px rgba(34,197,94,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .access-card.green:hover {
            box-shadow: 0 0 40px rgba(34,197,94,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
            border-color: rgba(34,197,94,0.2);
        }

        .access-card.purple {
            background: linear-gradient(145deg, rgba(168,85,247,0.08) 0%, rgba(20,20,20,0.8) 100%);
            box-shadow: 0 0 30px rgba(168,85,247,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .access-card.purple:hover {
            box-shadow: 0 0 40px rgba(168,85,247,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
            border-color: rgba(168,85,247,0.2);
        }

        .access-card.orange {
            background: linear-gradient(145deg, rgba(255,107,53,0.08) 0%, rgba(20,20,20,0.8) 100%);
            box-shadow: 0 0 30px rgba(255,107,53,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .access-card.orange:hover {
            box-shadow: 0 0 40px rgba(255,107,53,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
            border-color: rgba(255,107,53,0.2);
        }

        /* Icon on the left with glow */
        .access-icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .access-card.blue .access-icon-wrap {
            background: rgba(59,130,246,0.15);
            box-shadow: 0 0 15px rgba(59,130,246,0.2);
        }
        .access-card.green .access-icon-wrap {
            background: rgba(34,197,94,0.15);
            box-shadow: 0 0 15px rgba(34,197,94,0.2);
        }
        .access-card.purple .access-icon-wrap {
            background: rgba(168,85,247,0.15);
            box-shadow: 0 0 15px rgba(168,85,247,0.2);
        }
        .access-card.orange .access-icon-wrap {
            background: rgba(255,107,53,0.15);
            box-shadow: 0 0 15px rgba(255,107,53,0.2);
        }

        .access-icon-wrap svg {
            width: 20px;
            height: 20px;
            filter: drop-shadow(0 0 4px currentColor);
        }

        .access-card.blue .access-icon-wrap svg { color: #3b82f6; }
        .access-card.green .access-icon-wrap svg { color: #22c55e; }
        .access-card.purple .access-icon-wrap svg { color: #a855f7; }
        .access-card.orange .access-icon-wrap svg { color: #ff6b35; }

        .access-content {
            flex: 1;
            min-width: 0;
            position: relative;
            z-index: 1;
        }

        .access-content h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 3px;
            color: #fff;
        }

        .access-content p {
            font-size: 12px;
            color: #888;
            line-height: 1.4;
        }

        .access-arrow {
            width: 16px;
            height: 16px;
            color: #666;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            transition: transform 0.3s, color 0.3s;
        }

        .access-card:hover .access-arrow {
            transform: translateX(4px);
            color: #fff;
        }

        /* Why Choose Section */
        .why-choose {
            text-align: center;
            padding: 60px 40px 40px;
            font-size: 36px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .why-choose span {
            color: #ff6b35;
            text-shadow: 0 0 30px rgba(255,107,53,0.3);
        }

        /* Features Grid with shine */
        .features-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 40px 80px;
            position: relative;
            z-index: 1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .feature-card {
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
            cursor: pointer;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 50%, rgba(255,255,255,0.05));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        /* Shine animation for feature cards */
        .feature-card::after {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,0.02),
                transparent
            );
            transform: rotate(25deg);
            animation: cardShine 8s ease-in-out infinite;
        }

        @keyframes cardShine {
            0%, 100% { left: -100%; }
            50% { left: 150%; }
        }

        .feature-card:hover {
            transform: translateY(-4px);
        }

        .feature-card:active {
            transform: translateY(-2px) scale(0.98);
        }

        .feature-card.blue {
            background: linear-gradient(180deg, rgba(59,130,246,0.1) 0%, rgba(20,20,20,0.8) 100%);
            box-shadow: 0 0 40px rgba(59,130,246,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .feature-card.blue:hover {
            box-shadow: 0 0 60px rgba(59,130,246,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
            border-color: rgba(59,130,246,0.2);
        }

        .feature-card.green {
            background: linear-gradient(180deg, rgba(34,197,94,0.1) 0%, rgba(20,20,20,0.8) 100%);
            box-shadow: 0 0 40px rgba(34,197,94,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .feature-card.green:hover {
            box-shadow: 0 0 60px rgba(34,197,94,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
            border-color: rgba(34,197,94,0.2);
        }

        .feature-card.purple {
            background: linear-gradient(180deg, rgba(168,85,247,0.1) 0%, rgba(20,20,20,0.8) 100%);
            box-shadow: 0 0 40px rgba(168,85,247,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .feature-card.purple:hover {
            box-shadow: 0 0 60px rgba(168,85,247,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
            border-color: rgba(168,85,247,0.2);
        }

        .feature-card.orange {
            background: linear-gradient(180deg, rgba(255,107,53,0.1) 0%, rgba(20,20,20,0.8) 100%);
            box-shadow: 0 0 40px rgba(255,107,53,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .feature-card.orange:hover {
            box-shadow: 0 0 60px rgba(255,107,53,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
            border-color: rgba(255,107,53,0.2);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            position: relative;
            z-index: 1;
        }

        .feature-card.blue .feature-icon {
            background: rgba(59,130,246,0.15);
            color: #3b82f6;
            box-shadow: 0 0 20px rgba(59,130,246,0.2);
        }
        .feature-card.green .feature-icon {
            background: rgba(34,197,94,0.15);
            color: #22c55e;
            box-shadow: 0 0 20px rgba(34,197,94,0.2);
        }
        .feature-card.purple .feature-icon {
            background: rgba(168,85,247,0.15);
            color: #a855f7;
            box-shadow: 0 0 20px rgba(168,85,247,0.2);
        }
        .feature-card.orange .feature-icon {
            background: rgba(255,107,53,0.15);
            color: #ff6b35;
            box-shadow: 0 0 20px rgba(255,107,53,0.2);
        }

        .feature-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .feature-value {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            text-shadow: 0 0 20px currentColor;
        }

        .feature-card.blue .feature-value { color: #3b82f6; }
        .feature-card.green .feature-value { color: #22c55e; }
        .feature-card.purple .feature-value { color: #a855f7; }
        .feature-card.orange .feature-value { color: #ff6b35; }

        .feature-description {
            font-size: 15px;
            color: #888;
            line-height: 1.7;
            max-width: 400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* CTA Button */
        .cta-section {
            text-align: center;
            padding: 40px 0 80px;
            position: relative;
            z-index: 1;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 12px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            box-shadow: 0 0 30px rgba(255,255,255,0.05);
        }

        .btn-outline:active {
            transform: scale(0.98);
        }

        /* Floating Help Button with glow */
        .help-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255,107,53,0.4), 0 0 40px rgba(255,107,53,0.2);
            transition: all 0.3s;
            z-index: 100;
            animation: helpPulse 2s ease-in-out infinite;
            border: none;
        }

        @keyframes helpPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(255,107,53,0.4), 0 0 40px rgba(255,107,53,0.2); }
            50% { box-shadow: 0 4px 20px rgba(255,107,53,0.5), 0 0 60px rgba(255,107,53,0.3); }
        }

        .help-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(255,107,53,0.5), 0 0 80px rgba(255,107,53,0.3);
        }

        .help-btn:active {
            transform: scale(1.05);
        }

        .help-btn svg {
            width: 24px;
            height: 24px;
            color: white;
            filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .access-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .navbar {
                padding: 16px 20px;
            }

            .hero {
                padding: 30px 20px 50px;
            }

            .welcome-content h1 {
                font-size: 32px;
            }

            .auth-card {
                padding: 40px 24px;
            }

            .features-section {
                padding: 20px 20px 60px;
            }

            .feature-card {
                padding: 30px 24px;
            }
        }
    </style>