
        .form-container {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 75%, #533483 100%);
            padding: 32px;
            width: 100%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 24px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #e0e0e0;
        }

        .input-wrapper {
            position: relative;
        }

        input[type="email"], input[type="password"] {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #555;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        input[type="email"]::placeholder, input[type="password"]::placeholder {
            color: #999;
        }

        input[type="email"]:focus, input[type="password"]:focus {
            outline: none;
            border-color: #4a9eff;
            background: rgba(255, 255, 255, 0.15);
        }

        .eye-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #999;
            transition: color 0.3s ease;
        }

        .eye-icon:hover {
            color: #fff;
        }

        .pricing-options {
            margin: 32px 0;
        }

        .pricing-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            margin-bottom: 24px;
            border: 2px solid #555;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            color: #f8f8ff;
            filter: blur(1px) grayscale(100%);
        }

        .pricing-option:hover {
            border-color: #4a9eff;
            background: rgba(74, 158, 255, 0.1);
            filter: blur(0px) grayscale(0%);
        }

        .pricing-option.selected {
            border-color: #4a9eff;
            background: rgba(74, 158, 255, 0.2);
            filter: blur(0px) grayscale(0%) !important;
        }

        .pricing-option.trial {
            border-color: #4a9eff;
            background: linear-gradient(45deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
        }

        .pricing-option.popular {
            position: relative;
            
        }

        .pricing-option.popular::before {
            content: "Most Popular";
            position: absolute;
            top: -8px;
            left: 20px;
            background: #ff6b35;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        .pricing-option.discount {
            position: relative;
        }

        .pricing-option.discount::before {
            content: "🔥 67% OFF";
            position: absolute;
            top: -8px;
            left: 20px;
            background: #ff4444;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        .pricing-left {
            display: flex;
            flex-direction: column;
            padding: 10px 10px 4px 10px;
        }

        .pricing-period {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .pricing-label {
            font-size: 14px;
            color: #aaa;
        }

        .pricing-right {
            display: flex;  
            flex-direction: column;
            align-items: flex-end;
        }

        .pricing-amount {
            font-size: 32px;
            font-weight: 700;
            color: #4a9eff;
        }

        .pricing-frequency {
            font-size: 14px;
            color: #aaa;
        }

        .original-price {
            text-decoration: line-through;
            color: #ff4444;
            font-size: 14px;
            margin-top: 4px;
        }

        .payment-methods {
            margin: 32px 0;
        }

        .payment-methods h3 {
            margin-bottom: 16px;
            font-size: 18px;
            font-weight: 600;
        }

        .payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    border: 2px solid #555;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    min-height: 80px;
    filter: blur(0.5px) grayscale(50%);
    opacity: 0.7;
}

.payment-option:hover {
    border-color: #4a9eff;
    background: rgba(74, 158, 255, 0.1);
    filter: blur(0px);
    opacity: 1;
}

.payment-option.selected {
    border-color: #4a9eff;
    background: rgba(74, 158, 255, 0.2);
    filter: blur(0px) grayscale(0%);
    opacity: 1;
}

.payment-icon-new {
    font-size: 24px;
    color: #fff;
}

.paypal-option .paypal-icon {
    color: #0070ba;
}

.crypto-option .crypto-icon {
    color: #f7931a;
}

.payment-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

/* Override the blur for selected state */
.payment-option.selected .payment-icon-new,
.payment-option.selected .payment-label {
    filter: none;
}

        .payment-icons {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .payment-icon {
            width: 64px;
            height: 40px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .visa { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 32"><rect width="48" height="32" fill="%23005baa"/><text x="24" y="20" text-anchor="middle" fill="white" font-family="Arial" font-size="8" font-weight="bold">VISA</text></svg>'); }
        .mastercard { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 32"><rect width="48" height="32" fill="%23eb001b"/><text x="24" y="20" text-anchor="middle" fill="white" font-family="Arial" font-size="8" font-weight="bold">MC</text></svg>'); }
        .discover { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 32"><rect width="48" height="32" fill="%23ff6000"/><text x="24" y="20" text-anchor="middle" fill="white" font-family="Arial" font-size="5" font-weight="bold">DISC</text></svg>'); }
        .jcb { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 32"><rect width="48" height="32" fill="%23006cbb"/><text x="24" y="20" text-anchor="middle" fill="white" font-family="Arial" font-size="7" font-weight="bold">JCB</text></svg>'); }

        .paypal-logo {
            font-size: 18px;
            font-weight: 600;
            color: #f8f8ff;
        }

        .continue-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(45deg, #4a9eff, #00d4aa);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 24px;
            position: relative;
            overflow: hidden;
        }

        .continue-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(74, 158, 255, 0.3);
        }

        .continue-btn:active {
            transform: translateY(0);
        }

        .continue-btn::after {
            content: "▶";
            margin-left: 8px;
        }

        input[type="radio"] {
            display: none;
        }

        @media (max-width: 480px) {
            .form-container {
                padding: 24px;
                margin: 10px;
            }
            
            .pricing-amount {
                font-size: 24px;
            }
            
            .pricing-period {
                font-size: 20px;
            }
        }
