        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        @import "tailwindcss";
    

        :root {
            --primary: #723fa6;
            --secondary: #e2a636;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }
        
        .bg-primary {
            background-color: var(--primary);
        }
        
        .bg-secondary {
            background-color: var(--secondary);
        }
   
        .text-primary {
            color: var(--primary);
        }
        
        .text-secondary {
            color: var(--secondary);
        }
        
        .border-primary {
            border-color: var(--primary);
        }
        
        .border-secondary {
            border-color: var(--secondary);
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #723fa6 0%, #8a4fc7 100%);
        }

        .hero-video {
            object-fit: cover;
            object-position: center;
        }

        
        .video-fade-overlay {
            background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        }

        /* Styles for the left info panel with faded logo background */
        .signup-info-panel {
            position: relative; /* For ::before pseudo-element positioning */
            z-index: 0; /* Establish stacking context */
            /* The bg-gray-900 from Tailwind will be the base color */
        }

        .signup-info-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* === IMPORTANT: Replace with your actual logo URL === */
            background-image: url(images/Logo_One_Color.png); /* Placeholder */
            background-size: 150%; /* Adjust size of your logo */
            background-position: center center;
            background-repeat: no-repeat;
            opacity: 0.08; /* Adjust for desired transparency (e.g., 0.05 to 0.2) */
            /* mix-blend-mode: overlay; /* Or 'soft-light', 'multiply' - experiment with what looks best with your logo and bg-gray-900 */
            /* z-index: -1; /* Puts pseudo-element behind the content */
            /* The default stacking order should work if the content inside has its own stacking context or is simply rendered on top.
               If text becomes obscured, ensure the direct child div holding text has position:relative and z-index:1 */
        }

        /* Ensure text content is above the pseudo-element */
        .signup-info-panel > .content-wrapper {
            position: relative;
            z-index: 1;
        }

       
        .features-gradient {
            background: linear-gradient(135deg, #f9f7ff 0%, #f0e6ff 100%);
            position: relative;
            overflow: hidden;
        }
        

        .features-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(114, 63, 166, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(226, 166, 54, 0.08) 0%, transparent 50%);
            z-index: 0;
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .slide-in {
            animation: slideIn 1s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        
        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .delay-100 {
            animation-delay: 0.1s;
        }
        
        .delay-200 {
            animation-delay: 0.2s;
        }
        
        .delay-300 {
            animation-delay: 0.3s;
        }
        
        .delay-400 {
            animation-delay: 0.4s;
        }
        
        .delay-500 {
            animation-delay: 0.5s;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .feature-card.primary::before {
            background: linear-gradient(90deg, #723fa6, #9259d4);
        }
        
        .feature-card.secondary::before {
            background: linear-gradient(90deg, #e2a636, #f5c462);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(114, 63, 166, 0.15);
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }
        
        .feature-icon {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .feature-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.2;
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon::after {
            transform: translate(-50%, -50%) scale(1.2);
        }
        
        .glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.15;
            z-index: 0;
        }
        
        .glow-1 {
            width: 300px;
            height: 300px;
            background-color: var(--primary);
            top: -100px;
            left: -100px;
        }
        
        .glow-2 {
            width: 250px;
            height: 250px;
            background-color: var(--secondary);
            bottom: -50px;
            right: 10%;
        }
        
        .glow-3 {
            width: 200px;
            height: 200px;
            background-color: var(--primary);
            bottom: 20%;
            left: 10%;
            opacity: 0.1;
        }

        /* Add these styles to your existing style.css */

        /* Phone Container Styles */
        .phone-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* 3D Phone Frame */
        .phone-frame {
            width: 280px;
            height: 560px;
            background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
            border-radius: 35px;
            padding: 15px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 2px 4px rgba(255, 255, 255, 0.1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
            animation: phoneFloat 6s ease-in-out infinite;
        }

        /* Phone Screen */
        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
        }

        /* Status Bar */
        .status-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            font-size: 12px;
            font-weight: 600;
            color: #333;
        }

        .status-left {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .status-right {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* App Content */
        .app-content {
            padding: 30px 25px;
            height: calc(100% - 48px);
            display: flex;
            flex-direction: column;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        }

        /* Balance Section */
        .balance-section {
            text-align: center;
            margin-bottom: 10px;
            position: relative;
        }

        .balance-label {
            font-size: px;
            color: #666;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .balance-amount {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary), #9259d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .balance-card {
            background: linear-gradient(135deg, rgba(114, 63, 166, 0.1), rgba(146, 89, 212, 0.05));
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid rgba(114, 63, 166, 0.1);
            backdrop-filter: blur(10px);
        }

        /* Action Buttons */
        .actions-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .action-button {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
            border: 1px solid rgba(114, 63, 166, 0.1);
            border-radius: 16px;
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .action-button:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(114, 63, 166, 0.15);
            border-color: rgba(114, 63, 166, 0.3);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.95));
        }

        .action-button:active {
            transform: translateY(0) scale(0.98);
        }

        .action-text {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .action-icon {
            width: 20px;
            height: 20px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .action-button:hover .action-icon {
            transform: scale(1.1);
            color: var(--secondary);
        }

        /* Phone Hardware Details */
        .home-indicator {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 134px;
            height: 5px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 3px;
        }

        .camera-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 25px;
            background: #1a1a1a;
            border-radius: 0 0 15px 15px;
            z-index: 10;
        }

        .camera-circle {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: #333;
            border-radius: 50%;
        }

        /* Floating Animation */
        @keyframes phoneFloat {
            0%, 100% { 
                transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px);
            }
            50% { 
                transform: perspective(1000px) rotateY(5deg) rotateX(-2deg) translateY(-15px);
            }
        }

        AFN Badge
        .afn-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary), #f5c462);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(226, 166, 54, 0.4);
            animation: badgeFloat 4s ease-in-out infinite;
            z-index: 5;
        }

        .afn-text {
            font-size: 14px;
            font-weight: 800;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        @keyframes badgeFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        /* Glow Effects */
        .phone-frame::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 37px;
            z-index: -1;
            opacity: 0.3;
            filter: blur(8px);
        }

        /* Logo in header */
        .app-logo {
            width: 32px;
            height: 32px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 14px;
        }

        .app-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .app-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .phone-frame {
                width: 240px;
                height: 480px;
            }
            
            .balance-amount {
                font-size: 20px;
            }
            
            .action-text {
                font-size: 14px;
            }
        }


        